/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-image: url('images/topography.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Header */
header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #5500ff;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo img {
    width: 150px;
    max-width: 180px;
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #f8efef;
}

/* Download Dropdown */
.download-dropdown {
    position: relative;
}

#downloadBtn {
    background: #f7f4f5;
    color: #060606;
    border: none;
    padding: 8px 16px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    transition: transform 0.3s, background 0.3s;
}

#downloadBtn:hover {
    background: #000000;
    color: #fff;
    transform: scale(1.05);
}

.download-options {
    display: none;
    flex-direction: column;
    position: absolute;
    right: 0;
    top: 40px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    border-radius: 10px;
    z-index: 1001;
}

.download-options a {
    padding: 10px;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

.download-options a img {
    width: 120px;
    height: auto;
    border-radius: 10px;
}

/* Hamburger */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 1002;
    color: #070707;
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    position: fixed;
    top: 0;
    right: 0;
    width: 60%;
    height: 100vh;
    padding: 20px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1001;
}

.mobile-nav.show {
    display: flex;
    transform: translateX(0);
}

.mobile-nav a {
    padding: 15px;
    text-decoration: none;
    color: #2E1A47;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.mobile-close {
    align-self: flex-end;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    color: #070707;
}

.mobile-close:hover {
    color: #0b0b0b;
}

.mobile-download {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    padding: 15px;
    border-top: 1px solid #eee;
    gap: 10px;
}

.mobile-download a img {
    width: 120px;
    height: auto;
    border-radius: 10px;
}

/* Headings with Underline */
h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    max-width: 50%;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #FFFFFF;
    border-radius: 2px;
}

/* Underlined Text */
.underlined {
    position: relative;
    display: inline-block;
}

.underlined::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #FFFFFF;
}

/* Section Separator */
/* section:not(#faqs) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 90px 5% 40px;
} */

footer {
    border-top: none;
    padding: 80px 5% 40px;
}

/* Content Container */
.content-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0 40px;
}

/* Content Left Wrapper */
.content-left {
    flex: 1;
    text-align: left;
}

/* Content Center Wrapper */
.content-center {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Image Right */
.image-right {
    flex: 0 0 auto;
    max-width: 40%;
    display: block;
}

.image-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

/* Image Right for Mobile (below h2) */
.image-right-mobile {
    display: none;
    max-width: 40%;
    margin-left: auto;
}

.image-right-mobile img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

/* Center Content Wrapper */
.center-content {
    text-align: center;
    margin: 10px 0;
}

/* Home Section (Find Events) */
.home {
    width: 100vw;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.home .home-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.home .home-image .home-banner {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Preserve the entire image */
    object-position: center; /* Center the image */
    display: block;
}

.home .home-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    padding: 10px;
}

.home .download-buttons {
    display: flex;
    flex-direction: row;
    gap: 15px;
    flex-wrap: wrap;
}

.home .download-buttons a img {
    width: 200px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s;
}

.home .download-buttons a:hover img {
    transform: scale(1.05);
}

/* How It Works Section */
/* .how-it-works {
    padding: 80px 5% 40px;
    background: #5500ff;
}

.how-it-works .content-left {
    width: 100%;
}

.how-it-works h2 {
    margin: 0 0 20px;
    max-width: 100%;
    text-align: left;
}

.how-it-works .section-subtitle {
    font-size: 1.2rem;
    margin: 0 0 40px;
    color: #ffffff;
    font-weight: 400;
    text-align: left;
    max-width: 80%;
}

.how-it-works .carousel-container {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.how-it-works .carousel-wrapper {
    position: relative;
    max-width: 800px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
}

.how-it-works .carousel {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 20px;
    width: auto;
}

.how-it-works .carousel-item {
    width: calc(50% - 10px);
    max-width: 350px;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-it-works .carousel-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .how-it-works .carousel {
        width: calc((350px + 20px) * 3);
    }
}

@media (max-width: 768px) {
    .how-it-works .carousel-item {
        width: 100%;
        max-width: 300px;
    }
    .how-it-works .carousel {
        width: calc(300px + 20px) * 3;
    }
}

.how-it-works .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #333;
    font-size: 1.8rem;
    z-index: 20;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background 0.3s, transform 0.3s;
}

.how-it-works .carousel-arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

.how-it-works .left-arrow {
    left: 20px;
}

.how-it-works .right-arrow {
    right: 20px;
}

.how-it-works .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.how-it-works .dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.how-it-works .dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.how-it-works .dot.active {
    background: #FFFFFF;
    transform: scale(1.2);
} */


/* How It Works Section */
.how-it-works {
    padding: 80px 5% 40px;
    background: #5500ff;
}

.how-it-works .content-left {
    width: 100%;
}

.how-it-works h2 {
    margin: 0 0 20px;
    max-width: 100%;
    text-align: left;
}

.how-it-works .section-subtitle {
    font-size: 1.2rem;
    margin: 0 0 40px;
    color: #ffffff;
    font-weight: 400;
    text-align: left;
    max-width: 80%;
}

.how-it-works .works-image-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 790px;
    margin: 0 auto;
    gap: 20px;
}

.how-it-works .works-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.how-it-works .works-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-it-works .works-image {
    width: 100%;
    max-width: 378px;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-it-works .works-image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .how-it-works .works-image-container {
        flex-direction: column;
        align-items: center;
    }
    .how-it-works .works-left, .how-it-works .works-right {
        width: 100%;
        align-items: center;
    }
    .how-it-works .works-image {
        max-width: 300px;
    }
}

/* What Makes Aavo Different Section */
.aavo-different {
    padding: 80px 5% 40px;
}

.aavo-different .content-left {
    width: 100%;
}

.aavo-different .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 0 auto;
}

.aavo-different .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 10px 0;
}

.aavo-different .feature-icon {
    font-size: 1.5rem;
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
}

.aavo-different .feature-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #080808;
    margin-bottom: 5px;
}

.aavo-different .feature-text p {
    font-size: 1rem;
    color: #0c0c0c;
    font-weight: 400;
    line-height: 1.5;
}

/* Testimonials Section */
/* .testimonials {
    padding: 80px 5% 40px;
    text-align: center;
    position: relative;
}

.testimonials .section-subtitle {
    font-size: 1.2rem;
    margin: 10px 0 20px;
    color: #ffffff;
    font-weight: 400;
    text-align: left;
}

.testimonial-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
}

.testimonial-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    color: #ffffff;
    min-height: 150px;
    position: relative;
    flex: 0 0 calc(33.33% - 20px);
}

.testimonial-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.testimonial-author {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-align: right;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #FFFFFF;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #000000;
    font-size: 1.5rem;
    z-index: 20;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    opacity: 1;
    visibility: visible;
}

.carousel-arrow:hover {
    background: #f0f0f0;
}

.left-arrow {
    left: -50px;
}

.right-arrow {
    right: -50px;
} */


/* Testimonials Section */
.testimonials {
    padding: 80px 5% 40px;
    text-align: center;
    position: relative;
}

.testimonials .section-subtitle {
    font-size: 1.2rem;
    margin: 10px 0 20px;
    color: #ffffff;
    font-weight: 400;
    text-align: left;
}

.testimonial-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
}

.testimonial-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    color: #ffffff;
    min-height: 200px;
    position: relative;
    flex: 0 0 calc(33.33% - 20px);
}

.testimonial-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.testimonial-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    bottom: 40px;
    right: 20px;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.testimonial-author {
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-weight: 600;
    font-size: 1rem;
    text-align: right;
}

/* Latest News Section */
.latest-news {
    padding: 80px 5% 40px;
}

.latest-news .content-left {
    width: 100%;
}

.latest-news .section-subtitle {
    font-size: 1.2rem;
    margin: 10px 0 20px;
    color: #ffffff;
    font-weight: 400;
    text-align: left;
    max-width: 50%;
}

.latest-news h2 {
    font-size: 3rem;
    color: #ffffff;
    line-height: 1.2;
    max-width: 50%;
    text-transform: uppercase;
}

.latest-news .news-grid {
    display: grid;
    /* grid-template-columns: repeat(2, 1fr); */
    gap: 20px;
    margin: 20px auto;
    max-width: 300px;
}

.latest-news .news-item {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.latest-news .news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.latest-news .news-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 2px solid #FFFFFF;
}

.latest-news .news-date {
    font-size: 0.85rem;
    color: #ffffff;
    padding: 10px 15px;
    font-weight: 500;
}

.latest-news .news-item h3 {
    font-size: 1.2rem;
    color: #ffffff;
    padding: 0 15px 15px;
    font-weight: 600;
    line-height: 1.4;
}

/* Blog Post Section */
.blog-post {
    padding: 80px 5% 40px;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.blog-post .content-left {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    padding: 0 20px;
}

.blog-post .blog-date {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.blog-post h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.blog-post .blog-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.blog-post .blog-content {
    color: #ffffff;
    line-height: 1.8;
}

.blog-post .blog-intro {
    font-size: 1.1rem;
    font-style: italic;
    color: #010101;
    margin-bottom: 20px;
    border-left: 4px solid #010101;
    padding-left: 15px;
}

.blog-post .blog-subheading {
    font-size: 1.5rem;
    color: #0a0a0a;
    margin: 20px 0 10px;
    position: relative;
    padding-bottom: 5px;
}

.blog-post .blog-subheading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #000000;
}

.blog-post .blog-content p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.blog-post .blog-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: #050505;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
    border-left: 4px solid #020202;
}

/* Diversity Section */
/* .diversity {
    padding: 80px 5% 40px;
}

.diversity .content-container {
    align-items: center;
}

.diversity .content-left {
    max-width: 50%;
}

.diversity .download-label {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.diversity h2 {
    font-size: 2.5rem;
    color: #ffffff;
    line-height: 1.2;
    max-width: 100%;
    text-transform: none;
}

.diversity h2::after {
    display: none;
}

.diversity .download-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.diversity .download-buttons a img {
    width: 200px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s;
}

.diversity .download-buttons a:hover img {
    transform: scale(1.05);
}

.diversity .image-right img {
    max-width: 300px;
} */


/* Diversity Section */
.diversity {
    padding: 80px 5% 40px;
    border: none;
}

.diversity .content-container {
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #FFFFFF;
    border-radius: 15px;
    padding: 30px;
    min-height: 80vh;
}

.diversity .content-left {
    max-width: 50%;
}

.diversity .download-label {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.diversity h2 {
    font-size: 2.5rem;
    color: #ffffff;
    line-height: 1.2;
    max-width: 100%;
    text-transform: none;
}

.diversity h2::after {
    display: none;
}

.diversity .download-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.diversity .download-buttons a img {
    width: 200px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s;
}

.diversity .download-buttonss {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    margin-left: 70px;
    flex-wrap: wrap;
}

.diversity .download-buttonss a img {
    width: 30px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s;
}


.diversity .download-buttons a:hover img {
    transform: scale(1.05);
}

.diversity .image-right img {
    max-width: 300px;
}

/* FAQs Section */
.faqs {
    padding: 80px 5% 40px;
    text-align: center;
}

.faqs h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.faq-container {
    max-width: 800px;
    margin: auto;
}

.faq-item {
    margin-bottom: 10px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.faq-question {
    width: 100%;
    background: linear-gradient(90deg, #f6f4f5, #f8f6f7);
    color: #0a090a;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: linear-gradient(90deg, #f8f6f7, #f6f3f4);
}

.faq-question i {
    color: #000000;
}

.faq-answer {
    background: rgba(255, 255, 255, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-answer p {
    padding: 10px 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ffffff;
}

/* Footer */
footer {
    text-align: center;
    padding: 80px 5% 40px;
    background: transparent;
    color: #2E1A47;
    border-top: none;
}

footer .social-links a {
    margin: 0 15px;
    color: #f2ebf2;
    font-size: 2rem;
    transition: color 0.3s;
}

footer .social-links a:hover {
    color: #110475;
}

footer .download-buttons {
    margin: 10px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

footer .download-buttons a img {
    width: auto;
    height: 42px;
    border-radius: 10px;
    transition: transform 0.3s;
}

footer .download-buttons a:hover img {
    transform: scale(1.05);
}

footer p {
    color: #e3dfe9;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: #eee4e4;
    text-decoration: none;
    font-size: 1rem;
    margin: 0 5px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #f3eef0;
}

/* Privacy Policy and Terms & Conditions Sections */
.privacy-policy, .terms-conditions {
    padding: 80px 5% 20px;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.privacy-policy .content-left,
.terms-conditions .content-left {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    padding: 0 20px;
}

.privacy-policy h2,
.terms-conditions h2 {
    font-size: 3rem;
    color: #010101;
    text-align: relative;
    margin-bottom: 20px;
}

.privacy-policy h3,
.terms-conditions h3 {
    font-size: 1.5rem;
    color: #0a0a0a;
    margin: 20px 0 10px;
    text-align: center;
}

.privacy-policy p,
.terms-conditions p {
    font-size: 1rem;
    color: #040404;
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-policy ul,
.terms-conditions ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.privacy-policy ul li,
.terms-conditions ul li {
    font-size: 1rem;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* Section Divider */
/* .section-divider {
    border: none;
    height: 2px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
    margin: 40px 0;
    position: relative;
} */

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 769px) {
    header {
        padding: 15px 5%;
    }

    .logo img {
        width: 130px;
        max-width: 160px;
    }

    .nav-links {
        display: none;
    }

    .download-dropdown {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .home .download-buttons a img {
        width: 150px;
    }

    .how-it-works, .aavo-different, .faqs, .testimonials, .diversity, .latest-news, .blog-post {
        padding: 60px 5% 20px;
    }

    .how-it-works h2, .aavo-different h2, .testimonials h2, .diversity h2, .latest-news h2, .blog-post h1 {
        font-size: 2rem;
        max-width: 100%;
    }

    .how-it-works .section-subtitle, .latest-news .section-subtitle {
        max-width: 100%;
    }

    .how-it-works .carousel-wrapper {
        max-width: 300px;
        padding: 10px;
    }

    .how-it-works .carousel-item {
        max-width: 300px;
    }

    .how-it-works .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .how-it-works .left-arrow {
        left: 10px;
    }

    .how-it-works .right-arrow {
        right: 10px;
    }

    .how-it-works .dot {
        width: 10px;
        height: 10px;
    }

    .aavo-different .features-grid {
        grid-template-columns: 1fr;
    }

    .aavo-different .feature-item {
        justify-content: flex-start;
    }

    .aavo-different .feature-text h3 {
        font-size: 1rem;
    }

    .aavo-different .feature-text p {
        font-size: 0.85rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 15px;
    }

    .faq-answer p {
        font-size: 0.9rem;
        padding: 8px 0;
    }

    /* .testimonial-item {
        flex: 0 0 calc(50% - 15px);
        min-height: 180px;
        padding-bottom: 40px;
    }

    .testimonial-grid {
        gap: 15px;
    }

    .testimonial-author {
        bottom: 5px;
        right: 5px;
        font-size: 0.9rem;
    }

    .carousel-arrow {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }

    .left-arrow {
        left: -40px;
    }

    .right-arrow {
        right: -40px;
    } */


    .testimonial-item {
        flex: 0 0 calc(50% - 15px);
        min-height: 220px;
        padding: 20px 15px 70px 15px;
    }

    .testimonial-grid {
        gap: 10px;
    }

    .testimonial-item p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .testimonial-photo {
        width: 40px;
        height: 40px;
        bottom: 35px;
        right: 15px;
    }

    .testimonial-author {
        bottom: 10px;
        right: 15px;
        font-size: 0.9rem;
    }

    .diversity .content-container {
        flex-direction: column;
        align-items: center;
    }

    .diversity .content-left {
        max-width: 100%;
        text-align: center;
    }

    .diversity .image-right {
        display: none;
    }

    .diversity .image-right-mobile {
        display: block;
        max-width: 60%;
        margin-bottom: 20px;
        margin-left: auto;
        margin-right: auto;
    }

    .diversity .download-buttons {
        justify-content: center;
    }

    .diversity .download-buttons a img {
        width: 150px;
    }

    .diversity .download-buttonss {
        justify-content: center;
        width: auto;
        margin-left: auto;
        margin-right: auto;
    }

    .diversity .download-label {
        font-size: 1.2rem;
        color: #ffffff;
        font-weight: 500;
        margin-bottom: 10px;
        text-transform: uppercase;
    }

    .latest-news .news-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .latest-news .news-item img {
        height: 200px;
    }

    .blog-post h1 {
        font-size: 1.8rem;
    }

    .blog-post .blog-image {
        max-height: 300px;
    }

    .blog-post .blog-subheading {
        font-size: 1.3rem;
    }

    .blog-post .blog-content p {
        font-size: 0.95rem;
    }

    .blog-post .blog-quote {
        font-size: 1rem;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .home .download-buttons a img {
        width: 120px;
    }

    .how-it-works h2, .aavo-different h2, .testimonials h2, .diversity h2, .latest-news h2, .blog-post h1 {
        font-size: 1.5rem;
    }

    .how-it-works .section-subtitle, .latest-news .section-subtitle {
        font-size: 1rem;
    }

    .how-it-works .carousel-wrapper {
        max-width: 250px;
        padding: 10px;
    }

    .how-it-works .carousel-item {
        max-width: 250px;
    }

    .how-it-works .carousel-arrow {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .how-it-works .dot {
        width: 8px;
        height: 8px;
    }

    .aavo-different .feature-text h3 {
        font-size: 0.9rem;
    }

    .aavo-different .feature-text p {
        font-size: 0.75rem;
    }

    /* .testimonial-item {
        flex: 0 0 calc(50% - 15px);
        min-height: 150px;
        padding-bottom: 35px;
    }

    .testimonial-item p {
        font-size: 0.85rem;
    }

    .testimonial-author {
        font-size: 0.8rem;
    }

    .carousel-arrow {
        width: 25px;
        height: 25px;
        font-size: 1rem;
    }

    .left-arrow {
        left: -30px;
    }

    .right-arrow {
        right: -30px;
    } */

    .testimonial-item {
        flex: 0 0 calc(50% - 10px);
        min-height: 180px;
        padding: 15px 10px 60px;
    }

    .testimonial-item p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .testimonial-photo {
        width: 35px;
        height: 35px;
        bottom: 30px;
        right: 10px;
    }

    .testimonial-author {
        font-size: 0.8rem;
        right: 10px;
        bottom: 5px;
    }

    .diversity .image-right-mobile {
        max-width: 80%;
    }

    .diversity .download-buttons a img {
        width: 70%;
    }

    .latest-news .news-item img {
        height: 180px;
    }

    .latest-news .news-item h3 {
        font-size: 1.1rem;
    }

    .blog-post h1 {
        font-size: 1.5rem;
    }

    .blog-post .blog-image {
        max-height: 250px;
    }

    .blog-post .blog-subheading {
        font-size: 1.2rem;
    }

    .blog-post .blog-content p {
        font-size: 0.9rem;
    }

    .blog-post .blog-quote {
        font-size: 0.95rem;
        padding: 10px;
    }
}