* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inria Serif";
}

body {
    background-color: #ffffff;
    color: #333;
}

/* Navigation Bar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: black;
}

.nav-logo {
    width: 70px;
    height: 60px;
    margin-right: 10px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: black;
    font-size: 1.3rem;
    font-weight: bold;
}

/* Hero Section */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px;
    background-color: pink;
}

.hero-text {
    flex: 1;
    font-size: 1.5rem;
    padding-right: 50px;
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}


.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-text p {
    margin-top: 10px;
}

.hero-image img {
    width: 500px;
    height: auto;
    border-radius: 8px;
}

/* Download Button */
.btn-download {
    margin-top: 20px;
    padding: 15px 30px;
    font-size: 1.2rem;
    background-color: #94B48E;
    border: none;
    font-weight: bold;
    cursor: pointer;
    color: black;
    border-radius: 15px;
}

/* Features Section */
section {
    padding: 50px 30px;
    margin: auto;
}

#features {
    text-align: center;
    padding: 50px 20px;
    max-width: 50rem;
    font-size: 2rem;
}

/* Testimonials */
.testimonial-container {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #FFC0CB;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 10px;
    max-width: 1200px; 
    margin-left: auto;
    margin-right: auto;
}


.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial {
    font-size: 1.2rem;
    margin: 10px;
    flex: 1; 
    max-width: 950px; 
}


/* About Section */
#about h2 {
    text-align: center;
}

/* Download Section */
.centered-section {
    text-align: center;
    background-color: pink;

    width: 100vw;
    position: relative;
    left: 0;
    
}


.centered-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.centered-section p {
    font-size: 1.2rem;
}

.centered-section .btn-download {
    background-color: #94B48E;
    font-size: 1.5rem;
    padding: 15px 35px;
}

.centered-section p:last-child {
    font-size: 1.1rem;
    margin-top: 10px;
}
