.page-download__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
    color: #FFFFFF;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-bottom: 40px;
}

.page-download__hero-image {
    width: 100%;
    max-width: 1920px; /* Max width for the image */
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-download__hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 1;
}

.page-download__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-download__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px; /* Ensure button is not too small */
}

.page-download__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-download__platforms-section {
    padding: 60px 20px;
    background-color: #F4F7FB;
    text-align: center;
    color: #1F2D3D;
}

.page-download__section-title {
    font-size: 2.2em;
    font-weight: bold;
    color: #1F2D3D;
    margin-bottom: 40px;
}

.page-download__platform-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-download__platform-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-download__platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-download__card-image {
    width: 100%;
    max-width: 400px; /* Adjust based on card design, but >= 200px */
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-download__card-title {
    font-size: 1.5em;
    font-weight: bold;
    color: #1F2D3D;
    margin-bottom: 10px;
}

.page-download__card-description {
    font-size: 0.95em;
    color: #1F2D3D;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-download__card-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    min-width: 150px; /* Ensure button is not too small */
}

.page-download__card-button:hover {
    opacity: 0.9;
}

.page-download__requirements-section {
    padding: 60px 20px;
    background-color: #FFFFFF;
    color: #1F2D3D;
}

.page-download__requirements-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
}

.page-download__requirements-image {
    width: 100%;
    max-width: 600px; /* Ensure image is large enough */
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-download__requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.page-download__requirements-item {
    background-color: #F4F7FB;
    border-left: 4px solid #2F6BFF;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 4px;
    font-size: 1.05em;
    line-height: 1.6;
    color: #1F2D3D;
}

.page-download__requirements-item strong {
    color: #000000;
}

.page-download__installation-guide {
    padding: 60px 20px;
    background-color: #F4F7FB;
    text-align: center;
    color: #1F2D3D;
}

.page-download__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-download__step {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    min-height: 220px;
}

.page-download__step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: #2F6BFF;
    color: #FFFFFF;
    font-size: 1.8em;
    font-weight: bold;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.4);
}

.page-download__step-title {
    font-size: 1.4em;
    font-weight: bold;
    color: #1F2D3D;
    margin-bottom: 10px;
}

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

.page-download__faq-section {
    padding: 60px 20px;
    background-color: #FFFFFF;
    color: #1F2D3D;
    text-align: center;
}

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

.page-download__faq-item {
    background-color: #F4F7FB;
    border: 1px solid #D6E2FF;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 20px 25px;
    text-align: left;
}

.page-download__faq-question {
    font-size: 1.2em;
    font-weight: bold;
    color: #000000;
    margin-bottom: 10px;
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-download__main-title {
        font-size: 2em;
    }

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

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

    .page-download__platform-cards,
    .page-download__steps {
        grid-template-columns: 1fr;
    }

    .page-download__requirements-content {
        flex-direction: column;
    }

    .page-download__requirements-image {
        max-width: 100%;
    }

    /* Ensure all content images are responsive and do not cause overflow */
    .page-download img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-download__main-title {
        font-size: 1.8em;
    }

    .page-download__cta-button {
        padding: 12px 25px;
        font-size: 0.9em;
    }

    .page-download__platform-card,
    .page-download__step,
    .page-download__faq-item {
        padding: 20px;
    }

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