.page-download {
    font-family: 'Arial', sans-serif;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
}

/* Hero Section */
.page-download__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    justify-content: center;
    padding: 10px 20px 60px; /* Small top padding, more bottom padding */
    text-align: center;
    background-color: #08160F; /* Background */
}

.page-download__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Constrain image width */
    margin-bottom: 30px; /* Space between image and content */
}

.page-download__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-download__hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-download__hero-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    color: #F2C14E; /* Gold */
    margin-bottom: 20px;
}

.page-download__hero-description {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 40px;
}

.page-download__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.page-download__btn-primary,
.page-download__btn-secondary,
.page-download__btn-tertiary {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-download__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
    color: #F2FFF6; /* Text Main */
    border: 2px solid transparent;
}

.page-download__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 0 15px #57E38D; /* Glow */
}

.page-download__btn-secondary {
    background: transparent;
    color: #2AD16F; /* Brighter green */
    border: 2px solid #2AD16F;
}

.page-download__btn-secondary:hover {
    background: #2AD16F;
    color: #08160F; /* Background */
    box-shadow: 0 0 15px #57E38D; /* Glow */
}

.page-download__btn-tertiary {
    background: #1E3A2A; /* Divider */
    color: #F2FFF6; /* Text Main */
    border: 2px solid #1E3A2A;
}

.page-download__btn-tertiary:hover {
    background: #0A4B2C; /* Deep Green */
    border-color: #0A4B2C;
    box-shadow: 0 0 15px rgba(87, 227, 141, 0.5); /* Lighter glow */
}

/* General Sections */
.page-download__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-download__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: #F2C14E; /* Gold */
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
}

.page-download__section-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #A7D9B8; /* Text Secondary */
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

/* Why Download Section */
.page-download__why-download-section {
    padding: 80px 0;
    background-color: #08160F; /* Background */
}

.page-download__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-download__benefit-card {
    background-color: #11271B; /* Card BG */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-download__benefit-card:hover {
    transform: translateY(-10px);
}

.page-download__benefit-title {
    font-size: 1.5rem;
    color: #2AD16F; /* Brighter green */
    margin-bottom: 15px;
}

.page-download__benefit-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #A7D9B8; /* Text Secondary */
}

/* Guide Section */
.page-download__guide-section {
    padding: 80px 0;
    background-color: #0A4B2C; /* Deep Green */
}

.page-download__platform-guide {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-top: 50px;
}

.page-download__platform-card {
    background-color: #11271B; /* Card BG */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    flex: 1 1 45%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-download__platform-title {
    font-size: 2rem;
    color: #F2C14E; /* Gold */
    margin-bottom: 25px;
}

.page-download__platform-image {
    width: 100%;
    max-width: 300px; /* Smaller max-width for guide images */
    height: auto;
    display: block;
    margin: 0 auto 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-download__guide-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
    width: 100%;
}

.page-download__guide-list li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.page-download__guide-list li::before {
    content: "✓";
    color: #2AD16F; /* Brighter green */
    font-weight: bold;
    position: absolute;
    left: 0;
}

.page-download__btn-full-width {
    width: 100%;
    margin-top: auto; /* Push button to bottom */
}

.page-download__notes-block {
    background-color: #1E3A2A; /* Divider */
    padding: 40px;
    border-radius: 15px;
    margin-top: 60px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-download__notes-title {
    font-size: 1.8rem;
    color: #57E38D; /* Glow */
    text-align: center;
    margin-bottom: 25px;
}

.page-download__notes-list {
    list-style: disc;
    padding-left: 25px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #A7D9B8; /* Text Secondary */
}

.page-download__notes-list li {
    margin-bottom: 10px;
}

/* Features Section */
.page-download__features-section {
    padding: 80px 0;
    background-color: #08160F; /* Background */
}

.page-download__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-download__feature-card {
    background-color: #11271B; /* Card BG */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-download__feature-card:hover {
    transform: translateY(-10px);
}

.page-download__feature-title {
    font-size: 1.6rem;
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
}

.page-download__feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #A7D9B8; /* Text Secondary */
    flex-grow: 1; /* Push image/button to bottom if present */
}

.page-download__feature-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    margin: 20px auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 400px; /* Constrain feature image width */
}

/* FAQ Section */
.page-download__faq-section {
    padding: 80px 0;
    background-color: #0A4B2C; /* Deep Green */
}

.page-download__faq-list {
    max-width: 900px;
    margin: 50px auto 0;
}

.page-download__faq-item {
    background-color: #11271B; /* Card BG */
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-download__faq-item summary {
    list-style: none; /* Hide default marker */
    cursor: pointer;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #F2FFF6; /* Text Main */
    background-color: #1E3A2A; /* Divider */
    transition: background-color 0.3s ease;
}

.page-download__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit */
}

.page-download__faq-item summary:hover {
    background-color: #0A4B2C; /* Deep Green */
}

.page-download__faq-qtext {
    flex-grow: 1;
}

.page-download__faq-toggle {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2AD16F; /* Brighter green */
    margin-left: 20px;
    line-height: 1;
}

.page-download__faq-item[open] .page-download__faq-toggle {
    content: "−";
}

.page-download__faq-answer {
    padding: 20px 30px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #A7D9B8; /* Text Secondary */
}

/* Final CTA Section */
.page-download__cta-final-section {
    padding: 80px 0;
    background-color: #08160F; /* Background */
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-download__hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    .page-download__section-title {
        font-size: clamp(1.6rem, 4vw, 2.5rem);
    }
    .page-download__platform-card {
        flex: 1 1 100%;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .page-download {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-download__hero-section {
        padding: 10px 15px 40px;
    }

    .page-download__hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .page-download__hero-description {
        font-size: 1rem;
    }

    .page-download__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .page-download__btn-primary,
    .page-download__btn-secondary,
    .page-download__btn-tertiary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
    }

    .page-download__container {
        padding: 0 15px;
    }

    .page-download__section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        padding-top: 30px;
    }

    .page-download__section-intro {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .page-download__why-download-section,
    .page-download__guide-section,
    .page-download__features-section,
    .page-download__faq-section,
    .page-download__cta-final-section {
        padding: 40px 0;
    }

    .page-download__benefits-grid,
    .page-download__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-download__platform-card {
        padding: 30px;
    }

    .page-download__platform-title {
        font-size: 1.6rem;
    }

    .page-download__guide-list {
        margin-bottom: 20px;
    }

    .page-download__notes-block {
        padding: 30px;
        margin-top: 40px;
    }

    .page-download__notes-title {
        font-size: 1.5rem;
    }

    .page-download__faq-item summary {
        padding: 15px 20px;
        font-size: 1.1rem;
    }

    .page-download__faq-answer {
        padding: 15px 20px;
        font-size: 1rem;
    }

    /* Image responsive rules for mobile */
    .page-download img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-download__section,
    .page-download__card,
    .page-download__container,
    .page-download__hero-image-wrapper,
    .page-download__platform-image,
    .page-download__feature-image {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        /* Reset padding-left/right if container handles it globally */
        padding-left: 0;
        padding-right: 0;
    }

    .page-download__hero-section,
    .page-download__video-section { /* Added video-section for consistency though not directly used for video here */
        padding-top: 10px !important; /* body already handles --header-offset */
    }

    /* Video responsive rules for mobile (even if not used on this specific page, good to include) */
    .page-download video,
    .page-download__video {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
      display: block !important;
    }
    
    .page-download__video-section,
    .page-download__video-container,
    .page-download__video-wrapper {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
      overflow: hidden !important;
    }
    
    .page-download__video-section {
      padding-top: 10px !important;
    }
    
    .page-download__video-wrapper {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
    }
}