.page-download {
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: #F4F7FB;
    color: #1F2D3D;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

.page-download__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    text-align: center;
    background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
    color: #FFFFFF;
    border-radius: 8px;
    margin: 0 15px 30px 15px;
    overflow: hidden; /* Ensure content does not overflow */
}

.page-download__hero-visual {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.page-download__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-download__hero-content {
    width: 100%;
    max-width: 800px;
}

.page-download__hero-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.page-download__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #E0EFFF;
}

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

.page-download__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    color: #FFFFFF;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    transition: background-color 0.3s ease, transform 0.2s ease;
    min-height: 44px; /* Ensure touch target size */
}

.page-download__button:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
}

.page-download__section-title {
    font-size: 2.2em;
    font-weight: bold;
    color: #1F2D3D;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 30px;
}

.page-download__why-download-section, 
.page-download__how-to-download-section, 
.page-download__app-features-section, 
.page-download__faq-section, 
.page-download__final-cta-section {
    padding: 30px 15px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-download__why-download-section {
    background-color: #FFFFFF;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

.page-download__feature-card {
    background-color: #F4F7FB;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-download__feature-icon {
    width: 400px; /* Recommended size */
    height: 300px; /* Recommended size */
    object-fit: contain;
    margin-bottom: 15px;
    border-radius: 4px;
    min-width: 200px;
    min-height: 200px;
}

.page-download__feature-title {
    font-size: 1.4em;
    font-weight: bold;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 10px;
}

.page-download__feature-description {
    font-size: 1em;
    line-height: 1.5;
    color: #1F2D3D;
}

.page-download__how-to-download-section {
    background-color: #FFFFFF;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-download__download-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.page-download__step-card {
    background-color: #F4F7FB;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    border: 1px solid #D6E2FF;
}

.page-download__step-title {
    font-size: 1.3em;
    font-weight: bold;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 10px;
}

.page-download__step-description {
    font-size: 0.95em;
    line-height: 1.5;
    color: #1F2D3D;
}

.page-download__cta-buttons {
    text-align: center;
    margin-top: 40px;
}

.page-download__button--download-now {
    font-size: 1.2em;
    padding: 15px 35px;
}

.page-download__app-features-section {
    background-color: #FFFFFF;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-download__features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.page-download__feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background-color: #F4F7FB;
    border-radius: 8px;
    border: 1px solid #D6E2FF;
}

.page-download__feature-thumbnail {
    width: 400px; /* Recommended size */
    height: 300px; /* Recommended size */
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    min-width: 200px;
    min-height: 200px;
}

.page-download__feature-text {
    flex-grow: 1;
}

.page-download__feature-heading {
    font-size: 1.3em;
    font-weight: bold;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 10px;
}

.page-download__faq-section {
    background-color: #FFFFFF;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-download__faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-download__faq-item {
    background-color: #F4F7FB;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #D6E2FF;
}

.page-download__faq-question {
    font-size: 1.15em;
    font-weight: bold;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-download__faq-question::after {
    content: '+';
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-download__faq-question.is-active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-download__faq-answer {
    font-size: 1em;
    line-height: 1.5;
    color: #1F2D3D;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding-top 0.3s ease-out;
    padding-top: 0;
}

.page-download__faq-answer.is-open {
    max-height: 200px; /* Adjust as needed */
    padding-top: 10px;
}

.page-download__final-cta-section {
    text-align: center;
    background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
    color: #FFFFFF;
    padding: 50px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.page-download__final-cta-title {
    font-size: 2.2em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.page-download__final-cta-description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #E0EFFF;
}

.page-download__button--primary {
    font-size: 1.3em;
    padding: 15px 40px;
}

/* Mobile Responsive Styles */
@media (max-width: 849px) {
    .page-download__hero-section {
        margin: 0;
        border-radius: 0;
        padding: 15px;
    }

    .page-download__hero-visual {
        aspect-ratio: 16/10; /* Adjust aspect ratio for mobile hero visual */
        margin-bottom: 15px;
    }

    .page-download__hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem); /* Clamp for H1 */
        margin-bottom: 10px;
    }

    .page-download__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .page-download__download-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .page-download__button {
        width: 100%;
        max-width: 300px; /* Max width for buttons on mobile */
        margin: 0 auto;
    }

    .page-download__section-title,
    .page-download__final-cta-title {
        font-size: 1.8em;
        margin-bottom: 25px;
    }

    .page-download__why-download-section, 
    .page-download__how-to-download-section, 
    .page-download__app-features-section, 
    .page-download__faq-section, 
    .page-download__final-cta-section {
        padding: 20px 10px;
        margin-bottom: 20px;
        border-radius: 0;
    }

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

    .page-download__feature-icon,
    .page-download__feature-thumbnail {
        width: 100%;
        max-width: 250px; /* Ensure images are not too wide, but still >= 200px */
        height: auto;
        object-fit: contain;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    
    .page-download__feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .page-download__feature-heading,
    .page-download__feature-title,
    .page-download__step-title,
    .page-download__faq-question {
        font-size: 1.2em;
    }

    .page-download__button--download-now,
    .page-download__button--primary {
        font-size: 1.1em;
        padding: 12px 25px;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 549px) {
    .page-download__hero-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }

    .page-download__section-title,
    .page-download__final-cta-title {
        font-size: 1.6em;
    }

    .page-download__feature-icon,
    .page-download__feature-thumbnail {
        width: 100%;
        max-width: 200px; /* Smallest allowed, but still >= 200px */
        height: auto;
    }
}

/* Ensure content area images maintain minimum size */
.page-download__feature-icon, 
.page-download__feature-thumbnail {
    min-width: 200px;
    min-height: 200px; /* Ensure at least 200px in both dimensions for content images, adjusted from 150px to 200px for consistency */
}

@media (max-width: 768px) {
    .page-download__hero-image,
    .page-download__feature-icon,
    .page-download__feature-thumbnail {
        max-width: 100%;
        height: auto;
    }
}