/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #5500ff;
    overflow-x: hidden;
}

/* 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;
}

/* header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(85, 0, 255, 0.3); 
    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-family: "Comfortaa";
    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: transparent;
    /* 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
}

.download-options a img {
    width: 120px;
    height: auto;
    border-radius: 10px;
}

/* Hamburger */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 1002;
    color: #ffffff;
}

/* 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-family: "Comfortaa";
    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;
    font-family: "Comfortaa";
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    max-width: 50%;
}

h1 {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 3rem;
    font-weight: 700;
    font-family: "Comfortaa";
    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):not(.cut-section) {
    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;
}

/* Banner Section */
#banner-section {
    width: 100%;
    height: calc(100vh - 80px);
    /* Adjust for typical header height */
    overflow: hidden;
    position: relative;
    margin-top: 30px;
    /* Ensure it starts below the header */
}

#banner-section img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    /* Stretch the GIF to fit the entire section */
    object-position: center;
    display: block;
}

/* 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);
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #ffffff;
    transform: scale(1.05);
}

/* Card Styles */
.card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Fade-in animation for sections */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 1. Hero Section */
#hero-section {
    text-align: center;
    padding: 140px 5% 120px;
    /* Increased padding to accommodate larger video */
    /* background-color: #000; */
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#hero-section h1 {
    font-family: "Comfortaa";
    font-size: 4rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    margin-top: 20px;
}

#hero-section .subheadline {
    font-size: 1.5rem;
    color: #fff;
    font-family: "Comfortaa";
    margin-bottom: 30px;
    max-width: 600px;
}

#hero-section .download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

#hero-section .download-buttons img {
    width: 150px;
    height: auto;
}


#hero-section .video-container {
    position: relative;
    max-width: 1200px;
    /* Increased from 1000px */
    margin: 40px auto;
    /* Increased margin for balance */
}

#hero-section .video-placeholder {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

#hero-section .play-button {
    position: absolute;
    bottom: 30px;
    /* Adjusted for larger video */
    right: 30px;
    /* Adjusted for larger video */
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    padding: 14px 28px;
    /* Slightly larger play button for proportionality */
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-family: Arial, sans-serif;
    font-size: 1.2rem;
    /* Slightly larger font */
    font-weight: 600;
    color: #000;
}

#hero-section .play-button:hover {
    background-color: #fff;
}

#hero-section .play-icon {
    width: 0;
    height: 0;
    border-left: 16px solid #000;
    /* Slightly larger play icon */
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

#hero-section .video-player {
    display: none;
    width: 100%;
    height: 675px;
    /* Increased from 562.5px (1200 * 9/16) */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* 2. Why Organizers Section (Cards) */
#why-aavo-section {
    padding: 40px 20px;
    text-align: center;
}

#why-aavo-section .content-center h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #ffffff;
}

#why-aavo-section .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

#why-aavo-section .feature-item.card {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    background-color: #080707;
    padding: 20px;
    border-radius: 30px;
    transition: transform 0.3s;
}

#why-aavo-section .feature-item.card:hover {
    transform: translateY(-5px);
}

#why-aavo-section .feature-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

#why-aavo-section .feature-item .text-content {
    flex: 1;
}

#why-aavo-section .feature-item h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
}

#why-aavo-section .feature-item p {
    font-size: 1rem;
    color: #fff;
    margin: 0;
}

/* How It Works Section */
.how-it-works-section {
    /* background-color: #000; */
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
    width: 100%;
}

.how-it-works-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subheading {
    font-size: 1.2rem;
    font-weight: 400;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto 40px;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    flex: 1;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-image {
    width: 100%;
    height: 308px;
    /* Fixed height for uniformity */
    object-fit: cover;
    /* Maintain aspect ratio, fill space */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* 4. Real Talk Section (Slider) */
#real-talk-section {
    /* background-color: #222; */
    text-align: center;
}

#real-talk-section .testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

#real-talk-section .testimonials-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

#real-talk-section .testimonial-item {
    min-width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

#real-talk-section .testimonial-item p {
    font-size: 1.2rem;
    font-style: italic;
    color: #fff;
    margin-bottom: 10px;
}

#real-talk-section .testimonial-item span {
    font-size: 0.9rem;
    color: #ffffff;
}

#real-talk-section .slider-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

#real-talk-section .slider-dot {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#real-talk-section .slider-dot.active {
    background-color: #ffffff;
}

/* 5. Features Section */
#features-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #000;
}

#features-section .content-center h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #ffffff;
}

#features-section .features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

#features-section .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

#features-section .feature-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

#features-section .feature-item p {
    font-size: 1rem;
    color: #ffffff;
    margin: 0;
    flex: 1;
}

#features-section .cta-button {
    display: inline-block;
    margin-top: 40px;
    padding: 12px 24px;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

#features-section .download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

#features-section .download-buttons img {
    width: 150px;
    height: auto;
}


/* 6. Commission Section */
#commission-section {
    /* background-color: #222; */
    text-align: center;
}

#commission-section p {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

#commission-section .comparison-table {
    display: none;
    /* Optional visual, not implemented for simplicity */
}

#commission-section .download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

#commission-section .download-buttons img {
    width: 150px;
    height: auto;
}


/* 7. Event Types Section (Slider) */
#event-types-section {
    text-align: center;
    padding: 40px 20px;
}

#event-types-section .content-center h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

#event-types-section .section-subtitle {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

#event-types-section .events-columns {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

#event-types-section .column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex: 1;
}

#event-types-section .event-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

#event-types-section .event-item .emoji {
    font-size: 2rem;
    margin-bottom: 8px;
}

#event-types-section .event-item p {
    font-size: 1.2rem;
    color: white;
    margin: 0;
    line-height: 1.4;
}

#event-types-section .cta-button {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 24px;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

/* #event-types-section .cta-button:hover {
    background-color: #0056b3;
} */

#event-types-section .download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

#event-types-section .download-buttons img {
    width: 150px;
    height: auto;
}


/* 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;
}

.diversity .content-left {
    max-width: 50%;
}

.diversity .download-label {
    font-size: 0.9rem;
    /* font-family: "Comfortaa"; */
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.diversity h2 {
    font-size: 2.5rem;
    font-family: "Inter";
    color: #ffffff;
    line-height: 1.2;
    max-width: 100%;
    text-transform: none;
}

.diversity h3 {
    font-size: 1.5rem;
    font-family: "Inter";
    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-subtitle {
    font-size: 1.3rem;
    font-family: "Inter";
    color: #ffffff;
    line-height: 1.2;
    max-width: 100%;
    text-transform: none;
}


/* 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 */
.cut-section {
    background-color: #5500ff;
    /* Background for the aavo-cut image */
    width: 100%;
    margin-bottom: 0;
    /* No gap below */
}

.cut-image {
    width: 51%;
    max-width: 1200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.footer-section {
    background-color: #000;
    width: 100%;
    padding: 40px 20px;
    margin-top: 0;
    /* No gap above */
    font-family: Arial, sans-serif;
    color: #fff;
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    /* Space between main content and copyright/legal links */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* Align to top */
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon img {
    width: 30px;
    height: 30px;
    transition: opacity 0.3s ease;
}

.social-icon img:hover {
    opacity: 0.8;
}

.download-buttons {
    display: flex;
    gap: 15px;
}

.download-button img {
    width: 120px;
    height: auto;
    transition: opacity 0.3s ease;
}

.download-button img:hover {
    opacity: 0.8;
}

.footer-right {
    display: flex;
    gap: 40px;
    /* Spacing between the two columns of links */
    justify-content: flex-end;
    /* Align links to the right */
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.9rem;
    color: #ccc;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.copyright-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.copyright {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1.2rem;
    color: #ccc;
}

.legal-links {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
}

.legal-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #fff;
}

/* 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: 35px 20px;
}

.privacy-policy h2,
.terms-conditions h2 {
    font-size: 3rem;
    color: #ffffff;
    font-family: "Comfortaa";
    text-align: relative;
    margin-bottom: 20px;
}

.privacy-policy h3,
.terms-conditions h3 {
    font-size: 1.5rem;
    font-family: "Comfortaa";
    color: #ffffff;
    margin: 20px 0 10px;
    text-align: center;
}

.privacy-policy p,
.terms-conditions p {
    font-size: 1rem;
    font-family: "Inter";
    color: #ffffff;
    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: #ffffff;
    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: 1024px) {
    .latest-news .news-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin: 20px auto;
        max-width: 83%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 10px 5%;
    }

    .logo img {
        width: 100px;
    }

    .nav-links {
        display: none;
    }

    .download-dropdown {
        display: none;
    }

    .hamburger {
        display: block;
    }

    /* section {
        padding: 60px 5% 30px;
    } */

    .home .download-buttons a img {
        width: 150px;
    }

    #hero-section {
        padding: 100px 5% 60px;
    }

    #hero-section h1 {
        font-size: 2.5rem;
    }

    #hero-section .subheadline {
        font-size: 1.1rem;
    }

    #hero-section .download-buttons img {
        width: 130px;
    }

    #why-aavo-section .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 100%;
    }

    #why-aavo-section .content-center h1 {
        font-size: 2rem;
    }

    #why-aavo-section .feature-item.card {
        padding: 15px;
    }

    #why-aavo-section .feature-item img {
        width: 45px;
        height: 45px;
    }

    #why-aavo-section .feature-item h3 {
        font-size: 1.3rem;
    }

    #why-aavo-section .feature-item p {
        font-size: 0.95rem;
    }

    .how-it-works h2 {
        font-size: 2rem;
        max-width: 100%;
    }

    .how-it-works .section-subtitle {
        max-width: 100%;
    }

    .how-it-works-section {
        padding: 40px 15px;
    }

    .how-it-works-section h2 {
        font-size: 2rem;
    }

    .section-subheading {
        font-size: 1rem;
        padding: 0 10px;
    }

    .steps-container {
        flex-direction: column;
        gap: 20px;
    }

    .step {
        max-width: 100%;
    }

    .step-image {
        max-width: 250px;
        height: 250px;
        /* Adjusted height for smaller screens */
    }

    #real-talk-section h1 {
        font-size: 2rem;
    }

    #real-talk-section .testimonial-item p {
        font-size: 1rem;
    }

    #features-section .features-list {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }

    #features-section .content-center h1 {
        font-size: 2rem;
    }

    #features-section .feature-item img {
        width: 35px;
        height: 35px;
    }

    #features-section .feature-item p {
        font-size: 0.95rem;
    }

    #features-section .download-buttons img {
        width: 130px;
    }

    #commission-section h1 {
        font-size: 2rem;
    }

    #commission-section p {
        font-size: 1.1rem;
    }

    #commission-section .download-buttons img {
        width: 130px;
    }

    #event-types-section .events-columns {
        flex-direction: column;
        gap: 20px;
    }

    #event-types-section .content-center h2 {
        font-size: 2rem;
    }

    #event-types-section .section-subtitle {
        font-size: 1.3rem;
    }

    #event-types-section .event-item .emoji {
        font-size: 1.8rem;
    }

    #event-types-section .event-item p {
        font-size: 1.1rem;
    }

    #event-types-section .download-buttons img {
        width: 130px;
    }

    .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;
    }

    .footer-section {
        padding: 30px 15px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .footer-left {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .footer-right {
        justify-content: center;
        /* Center the links in mobile view */
        gap: 20px;
        /* Reduced gap for smaller screens */
    }

    .download-button img {
        width: 100px;
    }

    .social-icon img {
        width: 25px;
        height: 25px;
    }

    .footer-links {
        font-size: 0.85rem;
    }

    .copyright {
        font-size: 1rem;
    }

    .legal-links {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 80px;
    }

    .mobile-nav {
        width: 80%;
    }

    .home .download-buttons a img {
        width: 120px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    #hero-section h1 {
        font-size: 1.5rem;
    }

    #hero-section .subheadline {
        font-size: 0.95rem;
    }

    #hero-section .download-buttons {
        flex-direction: column;
        gap: 15px;
    }

    #hero-section .download-buttons img {
        width: 120px;
    }

    #why-aavo-section {
        padding: 30px 15px;
    }

    #why-aavo-section .content-center h1 {
        font-size: 1.5rem;
    }

    #why-aavo-section .feature-item.card {
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
    }

    #why-aavo-section .feature-item img {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }

    #why-aavo-section .feature-item h3 {
        font-size: 1.2rem;
    }

    #why-aavo-section .feature-item p {
        font-size: 0.9rem;
    }

    #how-it-works-section h2 {
        font-size: 1.8rem;
    }

    #how-it-works-section .section-subtitle {
        font-size: 0.95rem;
    }

    #how-it-works-section .step-item h3 {
        font-size: 1.1rem;
    }

    #how-it-works-section .step-item p {
        font-size: 0.85rem;
    }

    #real-talk-section h1 {
        font-size: 1.5rem;
    }

    #real-talk-section .testimonial-item p {
        font-size: 0.9rem;
    }

    #real-talk-section .testimonial-item span {
        font-size: 0.8rem;
    }

    #features-section {
        padding: 30px 15px;
    }

    #features-section .content-center h1 {
        font-size: 1.8rem;
    }

    #features-section .feature-item img {
        width: 30px;
        height: 30px;
    }

    #features-section .feature-item p {
        font-size: 0.9rem;
    }

    #features-section .cta-button {
        padding: 10px 20px;
        font-size: 1rem;
    }

    #commission-section h1 {
        font-size: 1.6rem;
    }

    #commission-section p {
        font-size: 0.95rem;
    }

    #event-types-section {
        padding: 30px 15px;
    }

    #event-types-section .content-center h2 {
        font-size: 1.8rem;
    }

    #event-types-section .section-subtitle {
        font-size: 1.1rem;
    }

    #event-types-section .event-item .emoji {
        font-size: 1.6rem;
    }

    #event-types-section .event-item p {
        font-size: 1rem;
    }

    #event-types-section .cta-button {
        padding: 10px 20px;
        font-size: 1rem;
    }

    #event-types-section .download-buttons {
        flex-direction: column;
        gap: 15px;
    }

    #event-types-section .download-buttons img {
        width: 120px;
    }

    .diversity .image-right-mobile {
        max-width: 80%;
    }

    .diversity .download-buttons a img {
        width: 70%;
    }

    .footer-section {
        padding: 20px 10px;
    }

    .footer-right {
        gap: 15px;
        /* Further reduce gap for mobile */
    }

    .download-button img {
        width: 90px;
    }

    .social-icon img {
        width: 20px;
        height: 20px;
    }

    .footer-links {
        font-size: 0.8rem;
    }

    .legal-links {
        flex-direction: row;
        /* Stack legal links vertically on mobile */
        gap: 10px;
        font-size: 0.8rem;
    }

    .copyright {
        font-size: 0.9rem;
    }
}