.page-download {
    background-color: #0D0E12;
    color: #FFF3E6;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small padding-top for the first section, relying on body for header offset */
}

.page-download__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Ensure image is above content */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    overflow: hidden;
    background: linear-gradient(180deg, #17191F 0%, #0D0E12 100%);
    border-bottom: 1px solid #A84F0C;
}

.page-download__hero-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: block;
    border-radius: 10px;
    margin-bottom: 30px; /* Space between image and text */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

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

.page-download__main-title {
    color: #FFF3E6; /* Text Main */
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    /* font-size clamp for responsiveness, but avoiding fixed large values */
    font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
}

.page-download__description {
    color: #FFF3E6; /* Text Main */
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-download__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    color: #FFF3E6; /* Text Main */
    text-align: center;
    min-width: 180px;
}

.page-download__btn--primary {
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    box-shadow: 0 4px 15px rgba(255, 132, 0, 0.4);
}

.page-download__btn--primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, #FFB04D 0%, #FF8C1A 100%);
}

.page-download__btn--secondary {
    background-color: #17191F; /* Card BG */
    border: 2px solid #A84F0C; /* Border */
}

.page-download__btn--secondary:hover {
    transform: translateY(-2px);
    background-color: #2a2d36;
    border-color: #FF8C1A;
}

.page-download__section-title {
    color: #FF8C1A; /* Main Color */
    font-size: clamp(1.8rem, 3vw + 1rem, 2.8rem);
    text-align: center;
    margin: 60px 0 40px;
    font-weight: bold;
    position: relative;
    padding-bottom: 10px;
}

.page-download__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #D96800, #FFA53A);
    border-radius: 2px;
}

.page-download__instructions-section {
    padding: 40px 20px;
    background-color: #0D0E12;
}

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

.page-download__instruction-card {
    background-color: #17191F; /* Card BG */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #A84F0C;
}

.page-download__instruction-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-width: 200px; /* Ensure image is at least 200px wide */
    min-height: 200px; /* Ensure image is at least 200px high */
}

.page-download__card-title {
    color: #FFA53A; /* Auxiliary Color */
    font-size: 1.8em;
    margin-bottom: 15px;
}

.page-download__instruction-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 30px;
    color: #FFF3E6;
    width: 100%;
    max-width: 350px;
}

.page-download__instruction-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-download__instruction-list li::before {
    content: '✓';
    color: #FFA53A;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-download__btn--download {
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    box-shadow: 0 4px 15px rgba(255, 132, 0, 0.4);
    width: fit-content;
}

.page-download__btn--download:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, #FFB04D 0%, #FF8C1A 100%);
}

.page-download__features-section {
    padding: 40px 20px;
    background-color: #0D0E12;
    border-top: 1px solid #A84F0C;
}

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

.page-download__feature-item {
    background-color: #17191F; /* Card BG */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #A84F0C;
}

.page-download__feature-icon {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
    object-fit: cover;
    border-radius: 5px;
    min-width: 200px; /* Ensure image is at least 200px wide */
    min-height: 200px; /* Ensure image is at least 200px high */
}

.page-download__feature-title {
    color: #FFA53A; /* Auxiliary Color */
    font-size: 1.6em;
    margin-bottom: 10px;
}

.page-download__feature-description {
    color: #FFF3E6; /* Text Main */
    font-size: 0.95em;
}

.page-download__faq-section {
    padding: 40px 20px;
    background-color: #0D0E12;
    border-top: 1px solid #A84F0C;
}

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

.page-download__faq-item {
    background-color: #17191F; /* Card BG */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid #A84F0C;
}

.page-download__faq-question {
    background-color: #17191F; /* Card BG */
    color: #FFF3E6; /* Text Main */
    padding: 20px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-download__faq-question:hover {
    background-color: #2a2d36;
}

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

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

.page-download__faq-answer {
    background-color: #0D0E12; /* Background */
    color: #FFF3E6; /* Text Main */
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-download__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding: 20px;
}

.page-download__faq-answer p {
    margin: 0;
}

.page-download__cta-bottom-section {
    padding: 60px 20px;
    background-color: #17191F; /* Card BG */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    border-top: 1px solid #A84F0C;
}

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

.page-download__cta-title {
    color: #FF8C1A; /* Main Color */
    font-size: clamp(2rem, 4vw + 1rem, 3.2rem);
    margin-bottom: 20px;
    font-weight: bold;
}

.page-download__cta-description {
    color: #FFF3E6; /* Text Main */
    font-size: 1.1em;
    margin-bottom: 30px;
}

.page-download__cta-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    object-fit: cover;
    min-width: 200px; /* Ensure image is at least 200px wide */
    min-height: 200px; /* Ensure image is at least 200px high */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-download__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

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

    .page-download__cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-download__btn {
        width: 100%;
        max-width: 280px;
    }

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

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

    .page-download__section-title {
        margin: 40px 0 30px;
    }

    .page-download__faq-question {
        font-size: 1em;
        padding: 15px;
    }

    /* Ensure content area images are responsive and don't overflow */
    .page-download__instruction-image,
    .page-download__feature-icon,
    .page-download__cta-image {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-download__hero-section,
    .page-download__instructions-section,
    .page-download__features-section,
    .page-download__faq-section,
    .page-download__cta-bottom-section {
        padding: 20px 15px;
    }

    .page-download__main-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .page-download__section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .page-download__cta-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }
}