/* style/app-download.css */
.page-app-download {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

.page-app-download__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-app-download__section-title {
    color: #003366;
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
    padding-top: 40px;
}

.page-app-download__section-intro {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #555;
}

.page-app-download__image-responsive {
    max-width: 100%;
    height: auto;
    display: block;
}

.page-app-download__image-centered {
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

/* Hero Section */
.page-app-download__hero-section {
    background: linear-gradient(135deg, #003366 0%, #004d99 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-app-download__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;charset=UTF-8,%3Csvg width="100%" height="100%" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.6" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%" height="100%" filter="url(%23noiseFilter)" opacity="0.05"/%3E%3C/svg%3E') repeat;
    opacity: 0.1;
}

.page-app-download__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.page-app-download__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #FFCC00; /* High contrast with dark blue background */
}

.page-app-download__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-app-download__hero-image {
    margin-top: 50px;
}

.page-app-download__hero-image img {
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.page-app-download__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-app-download__btn--primary {
    background-color: #FFCC00;
    color: #003366; /* High contrast with yellow background */
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
}

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

.page-app-download__btn--secondary {
    background-color: #003366;
    color: #FFCC00; /* High contrast with dark blue background */
    border: 2px solid #FFCC00;
    margin-top: 20px;
}

.page-app-download__btn--secondary:hover {
    background-color: #004d99;
    transform: translateY(-3px);
}

.page-app-download__btn--text {
    background: none;
    color: #003366;
    padding: 10px 0;
    border-radius: 0;
    font-size: 1em;
    font-weight: normal;
    border-bottom: 2px solid #003366;
    display: inline-block;
    margin-top: 15px;
}

.page-app-download__btn--text:hover {
    color: #004d99;
    border-color: #004d99;
}

.page-app-download__btn--large {
    padding: 20px 40px;
    font-size: 1.4em;
}

/* Why Download Section */
.page-app-download__why-download-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

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

.page-app-download__feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

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

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

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

/* Download Steps Section */
.page-app-download__download-steps-section {
    padding: 60px 0;
    background-color: #eef2f6;
}

.page-app-download__platform-guide {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 40px;
    margin-bottom: 40px;
}

.page-app-download__platform-title {
    color: #003366;
    font-size: 2em;
    text-align: center;
    margin-bottom: 30px;
}

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

.page-app-download__guide-text {
    flex: 2;
    min-width: 300px;
}

.page-app-download__guide-text ol {
    list-style: decimal;
    padding-left: 25px;
    margin-bottom: 30px;
}

.page-app-download__guide-text ol li {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #444;
}

.page-app-download__guide-text ol li strong {
    color: #003366;
}

.page-app-download__qr-code {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.page-app-download__qr-code img {
    max-width: 200px;
    height: auto;
    border: 5px solid #003366;
    border-radius: 10px;
}

.page-app-download__qr-code p {
    margin-top: 15px;
    font-size: 1.1em;
    color: #003366;
    font-weight: bold;
}

/* App Features Section */
.page-app-download__app-features-section {
    padding: 60px 0;
    background-color: #fefefe;
}

.page-app-download__features-list ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.page-app-download__features-list ul li {
    background-color: #fff;
    border: 1px solid #eee;
    border-left: 5px solid #FFCC00;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    color: #444;
}

.page-app-download__features-list ul li strong {
    color: #003366;
}

/* Exclusive Offers Section */
.page-app-download__exclusive-offers-section {
    background-color: #003366;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-app-download__exclusive-offers-section .page-app-download__section-title {
    color: #FFCC00; /* High contrast */
}

.page-app-download__exclusive-offers-section .page-app-download__section-intro {
    color: #e0e0e0;
}

.page-app-download__offers-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 40px auto;
    text-align: left;
}

.page-app-download__offers-list li {
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 5px solid #FFCC00;
    padding: 15px 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 1.1em;
    color: #fff;
}

.page-app-download__offers-list li strong {
    color: #FFCC00;
}

/* Related Guides Section */
.page-app-download__related-guides-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-app-download__guide-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-app-download__guide-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

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

.page-app-download__guide-card-title {
    color: #003366;
    font-size: 1.4em;
    margin-bottom: 10px;
    line-height: 1.3;
}

.page-app-download__guide-card-description {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Final CTA Section */
.page-app-download__final-cta-section {
    background-color: #eef2f6;
    padding: 80px 0;
    text-align: center;
}

.page-app-download__cta-icon {
    max-width: 120px;
    margin-bottom: 30px;
}

.page-app-download__final-cta-section .page-app-download__section-title {
    margin-top: 0;
}

.page-app-download__small-text {
    font-size: 0.9em;
    color: #777;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-app-download__hero-title {
        font-size: 2.8em;
    }

    .page-app-download__guide-content {
        flex-direction: column;
    }

    .page-app-download__qr-code {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .page-app-download__hero-title {
        font-size: 2.2em;
    }

    .page-app-download__hero-description {
        font-size: 1.1em;
    }

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

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

    .page-app-download__guide-card-title {
        font-size: 1.2em;
    }

    .page-app-download__features-grid,
    .page-app-download__guide-cards-grid {
        grid-template-columns: 1fr;
    }
}

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

    .page-app-download__hero-description {
        font-size: 1em;
    }

    .page-app-download__btn--primary,
    .page-app-download__btn--secondary,
    .page-app-download__btn--large {
        padding: 12px 20px;
        font-size: 1em;
    }

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

    .page-app-download__platform-title {
        font-size: 1.6em;
    }

    .page-app-download__qr-code img {
        max-width: 150px;
    }
}