.page-download {
    color: #333333; /* Dark text for default white body background */
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

.page-download__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    background-color: #007bff; /* Primary color background */
    color: #ffffff;
    text-align: center;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

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

.page-download__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffc107; /* Auxiliary color for emphasis */
}

.page-download__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-download__download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    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.3s ease;
    white-space: nowrap;
}

.page-download__btn--primary {
    background-color: #ffc107; /* Auxiliary color */
    color: #007bff; /* Primary color for text */
    border: 2px solid #ffc107;
}

.page-download__btn--primary:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
}

.page-download__btn--secondary {
    background-color: transparent;
    color: #ffc107; /* Auxiliary color */
    border: 2px solid #ffc107;
}

.page-download__btn--secondary:hover {
    background-color: rgba(255, 193, 7, 0.1);
    transform: translateY(-3px);
}

.page-download__hero-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: block;
    margin: 40px auto 0;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-download__section-title {
    font-size: 2.2em;
    color: #007bff; /* Primary color */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-download__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: -20px auto 50px;
    color: #555;
}

.page-download__features-section,
.page-download__methods-section,
.page-download__notes-section,
.page-download__faq-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

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

.page-download__feature-item {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 5px solid #007bff;
}

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

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

.page-download__feature-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 15px;
}

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

.page-download__method-item {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #ffc107;
}

.page-download__method-title {
    font-size: 1.8em;
    color: #007bff;
    margin-bottom: 20px;
}

.page-download__method-description {
    font-size: 1.1em;
    color: #555555;
    margin-bottom: 25px;
}

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

.page-download__method-steps li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 1em;
    color: #444444;
}

.page-download__method-steps li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    background-color: #007bff;
    color: #ffffff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 0.9em;
    margin-right: 15px;
    flex-shrink: 0;
}

.page-download__qr-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.page-download__qr-code {
    width: 200px;
    height: 200px;
    border: 5px solid #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-download__notes-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background-color: #eaf6ff; /* Light blue background */
    border-radius: 12px;
    padding: 40px;
}

.page-download__notes-content {
    flex: 1;
    min-width: 300px;
}

.page-download__notes-text {
    font-size: 1.1em;
    color: #555555;
    margin-bottom: 25px;
}

.page-download__notes-list {
    list-style: none;
    padding: 0;
}

.page-download__notes-list li {
    font-size: 1em;
    color: #444444;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.page-download__notes-list li strong {
    color: #007bff;
    margin-right: 8px;
    flex-shrink: 0;
}

.page-download__notes-image {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

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

.page-download__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-download__faq-item--active {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-download__faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background-color: #f0f7ff; /* Lighter primary background */
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.2em;
    color: #007bff; /* Primary color */
    font-weight: bold;
    transition: background-color 0.3s ease;
}

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

.page-download__faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: #007bff;
}

.page-download__faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.page-download__faq-icon::before,
.page-download__faq-icon::after {
    content: '';
    position: absolute;
    background-color: #007bff;
    transition: transform 0.3s ease;
}

.page-download__faq-icon::before {
    width: 100%;
    height: 2px;
    top: 9px;
    left: 0;
}

.page-download__faq-icon::after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 9px;
}

.page-download__faq-item--active .page-download__faq-icon::after {
    transform: rotate(90deg) scale(0);
}

.page-download__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    background-color: #ffffff;
}

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

.page-download__faq-answer p {
    margin: 0;
    color: #555555;
    font-size: 1em;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-download__hero-title {
        font-size: 2.4em;
    }
    .page-download__section-title {
        font-size: 2em;
    }
    .page-download__notes-section {
        flex-direction: column;
        text-align: center;
    }
    .page-download__notes-image {
        order: -1; /* Image above text on smaller screens */
    }
}

@media (max-width: 768px) {
    .page-download__hero-section {
        padding: 40px 15px;
    }
    .page-download__hero-title {
        font-size: 2em;
    }
    .page-download__hero-description {
        font-size: 1em;
    }
    .page-download__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-download__features-grid {
        grid-template-columns: 1fr;
    }
    .page-download__section-title {
        font-size: 1.8em;
    }
    .page-download__method-item {
        padding: 30px 20px;
    }
    .page-download__method-title {
        font-size: 1.5em;
    }
    .page-download__qr-section {
        flex-direction: column;
    }
    .page-download__notes-section {
        padding: 30px 20px;
    }
    .page-download__faq-question h3 {
        font-size: 1em;
    }
    .page-download__faq-item--active .page-download__faq-answer {
        max-height: 300px; /* Allow more height for mobile */
    }
    /* Ensure all images within .page-download are responsive and not too small */
    .page-download img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce minimum size for content images */
        min-height: 200px; /* Enforce minimum size for content images */
    }
    .page-download__qr-code {
        min-width: 200px;
        min-height: 200px;
    }
    .page-download__feature-icon {
        min-width: 200px;
        min-height: 200px;
    }
    .page-download__notes-image {
        min-width: 200px;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-download__hero-title {
        font-size: 1.8em;
    }
    .page-download__download-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-download__btn {
        width: 100%;
    }
    .page-download__section-title {
        font-size: 1.6em;
    }
    .page-download__feature-item {
        padding: 20px;
    }
    .page-download__method-item {
        padding: 20px 15px;
    }
    .page-download__faq-question h3 {
        font-size: 0.9em;
    }
}