.page-download__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px 40px;
    background-color: #F4F7FB;
    color: #1F2D3D;
    text-align: center;
}

.page-download__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 20px;
}

.page-download__hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

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

.page-download__main-title {
    color: #000000;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.page-download__description {
    color: #1F2D3D;
    font-size: 1.1em;
    margin-bottom: 30px;
}

.page-download__btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1em;
}

.page-download__btn--primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-download__btn--primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

.page-download__btn--secondary {
    background: #6FA3FF;
    color: #FFFFFF;
    box-shadow: 0 4px 10px rgba(111, 163, 255, 0.3);
}

.page-download__btn--secondary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(111, 163, 255, 0.4);
}

.page-download__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.page-download__section-title {
    color: #000000;
    font-size: 2.2em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

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

.page-download__feature-card {
    background-color: #F4F7FB;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.page-download__feature-icon {
    width: 100%;
    height: auto;
    max-width: 200px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-download__feature-title {
    color: #000000;
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 10px;
}

.page-download__feature-text {
    color: #1F2D3D;
    font-size: 1em;
}

.page-download__platform-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #D6E2FF;
}

.page-download__tab-item {
    padding: 15px 30px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    color: #6FA3FF;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.page-download__tab-item:hover {
    color: #2F6BFF;
}

.page-download__tab-item--active {
    color: #2F6BFF;
    border-bottom-color: #2F6BFF;
}

.page-download__platform-content {
    display: none;
    padding: 20px 0;
}

.page-download__platform-content--active {
    display: block;
}

.page-download__platform-subtitle {
    color: #000000;
    font-size: 1.8em;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.page-download__platform-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.page-download__platform-qr {
    text-align: center;
}

.page-download__qr-image {
    width: 250px;
    height: 250px;
    border: 1px solid #D6E2FF;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.page-download__qr-text {
    color: #1F2D3D;
    margin-top: 15px;
    font-size: 1em;
}

.page-download__platform-steps {
    max-width: 500px;
}

.page-download__step-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-download__step-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #1F2D3D;
    font-size: 1.05em;
    line-height: 1.5;
}

.page-download__step-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    background-color: #2F6BFF;
    color: #FFFFFF;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9em;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(47, 107, 255, 0.2);
}

.page-download__faq-section {
    background-color: #F4F7FB;
    box-shadow: none;
}

.page-download__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #D6E2FF;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-download__faq-question {
    color: #000000;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-download__faq-answer {
    color: #1F2D3D;
    font-size: 1em;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-download__hero-section {
        padding: 10px 15px 30px;
    }

    .page-download__main-title {
        font-size: 1.8em;
    }

    .page-download__description {
        font-size: 1em;
    }

    .page-download__btn {
        padding: 12px 24px;
        font-size: 0.9em;
    }

    .page-download__section {
        padding: 40px 15px;
        margin-bottom: 30px;
    }

    .page-download__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-download__features-grid {
        grid-template-columns: 1fr;
    }

    .page-download__tab-item {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-download__platform-details {
        flex-direction: column;
        gap: 30px;
    }

    .page-download__platform-subtitle {
        font-size: 1.5em;
    }

    .page-download__qr-image {
        width: 200px;
        height: 200px;
    }

    .page-download__platform-steps {
        max-width: 100%;
    }

    .page-download__step-list li {
        font-size: 0.95em;
    }

    .page-download__faq-question {
        font-size: 1.1em;
    }

    .page-download__faq-answer {
        font-size: 0.95em;
    }

    /* Ensure content images do not overflow */
    .page-download__hero-image,
    .page-download__feature-icon,
    .page-download__qr-image {
        max-width: 100%;
        height: auto;
    }
    /* Content area images CSS dimensions lower bound */
    .page-download img {
        min-width: 200px; /* Enforce minimum display size */
        min-height: 200px; /* Enforce minimum display size */
    }
    /* Override for specific small images if any were allowed (but they are not) */
    .page-download__qr-image {
        min-width: 150px; /* QR code can be slightly smaller but still >100 */
        min-height: 150px; /* QR code can be slightly smaller but still >100 */
    }
    /* Re-evaluate for specific elements if they truly need smaller display sizes */
    /* Given the strict rule 'any width or height less than 200px is forbidden', QR codes must also adhere to this */
    .page-download__qr-image {
        min-width: 200px; /* Adjusting QR to meet strict 200px minimum */
        min-height: 200px; /* Adjusting QR to meet strict 200px minimum */
    }
}

/* Desktop specific adjustments if needed */
@media (min-width: 769px) {
    .page-download__hero-section {
        padding-top: 20px;
    }
    .page-download__hero-image-wrapper {
        width: 100%;
        max-width: 1200px;
    }
    .page-download__hero-image {
        width: 100%;
        height: auto;
    }
    .page-download__features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .page-download__platform-details {
        flex-direction: row;
        justify-content: center;
    }
}