/* style/app-download-installation.css */

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

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

.page-app-download-installation__hero {
    background: linear-gradient(135deg, #0A2463 0%, #3a5c9d 100%); /* Adjusted gradient for better contrast */
    color: #fff;
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-app-download-installation__hero-title {
    font-size: 2.8em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #fff;
}

.page-app-download-installation__hero-title .highlight {
    color: #FFD700;
}

.page-app-download-installation__hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-app-download-installation__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1em;
}

.page-app-download-installation__btn--primary {
    background-color: #FFD700;
    color: #0A2463;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-app-download-installation__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-app-download-installation__hero-image {
    max-width: 400px;
    width: 100%;
    margin-top: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-app-download-installation__section {
    padding: 60px 0;
    text-align: center;
}

.page-app-download-installation__section--alt-bg {
    background-color: #f8f8f8;
}

.page-app-download-installation__section-title {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #0A2463;
    font-weight: bold;
}

.page-app-download-installation__section-title .highlight {
    color: #FFD700;
}

.page-app-download-installation__section-description {
    font-size: 1.1em;
    color: #555;
    max-width: 900px;
    margin: 0 auto 40px;
}

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

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

.page-app-download-installation__benefit-item:hover {
    transform: translateY(-5px);
}

.page-app-download-installation__benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.page-app-download-installation__benefit-title {
    font-size: 1.4em;
    color: #0A2463;
    margin-bottom: 10px;
}

.page-app-download-installation__benefit-description {
    font-size: 0.95em;
    color: #666;
}

.page-app-download-installation__tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #eee;
}

.page-app-download-installation__tab-btn {
    background-color: transparent;
    border: none;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    outline: none;
}

.page-app-download-installation__tab-btn:hover {
    color: #0A2463;
}

.page-app-download-installation__tab-btn.active {
    color: #0A2463;
    border-bottom: 3px solid #FFD700;
}

.page-app-download-installation__tab-content {
    display: none;
    text-align: left;
    margin-top: 30px;
}

.page-app-download-installation__tab-content.active {
    display: block;
}

.page-app-download-installation__step-heading {
    font-size: 1.8em;
    color: #0A2463;
    margin-bottom: 30px;
    text-align: center;
}

.page-app-download-installation__installation-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-app-download-installation__installation-steps li {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.page-app-download-installation__installation-steps li h4 {
    font-size: 1.3em;
    color: #0A2463;
    margin-bottom: 10px;
}

.page-app-download-installation__installation-steps li p {
    color: #444;
    margin-bottom: 15px;
}

.page-app-download-installation__step-image {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.page-app-download-installation__link-inline {
    color: #0A2463;
    text-decoration: underline;
    font-weight: bold;
}

.page-app-download-installation__link-inline:hover {
    color: #FFD700;
}

.page-app-download-installation__cta-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px dashed #ddd;
}

.page-app-download-installation__cta-bottom p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
}

.page-app-download-installation__btn--secondary {
    background-color: #0A2463;
    color: #fff;
    border: 2px solid #0A2463;
}

.page-app-download-installation__btn--secondary:hover {
    background-color: #1a3c7a;
    border-color: #1a3c7a;
    transform: translateY(-2px);
}

.page-app-download-installation__checklist {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    text-align: left;
}

.page-app-download-installation__checklist li {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    font-size: 1.05em;
    color: #444;
}

.page-app-download-installation__checklist-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    filter: invert(15%) sepia(85%) saturate(3000%) hue-rotate(200deg) brightness(80%) contrast(100%); /* Adjust to match primary color */
}

.page-app-download-installation__section--cta {
    background-color: #0A2463;
    color: #fff;
    padding: 80px 0;
}

.page-app-download-installation__section--cta .page-app-download-installation__section-title {
    color: #fff;
}

.page-app-download-installation__section--cta .page-app-download-installation__section-description {
    color: #e0e0e0;
}

.page-app-download-installation__btn--large {
    padding: 15px 40px;
    font-size: 1.2em;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-app-download-installation__hero-title {
        font-size: 2em;
    }

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

    .page-app-download-installation__tabs {
        flex-direction: column;
        border-bottom: none;
    }

    .page-app-download-installation__tab-btn {
        border-bottom: 2px solid #eee;
        margin-bottom: 5px;
    }

    .page-app-download-installation__tab-btn.active {
        border-bottom: 3px solid #FFD700;
    }

    .page-app-download-installation__installation-steps li {
        padding: 20px;
    }

    .page-app-download-installation__installation-steps li h4 {
        font-size: 1.2em;
    }

    .page-app-download-installation__benefits-grid, .page-app-download-installation__checklist {
        grid-template-columns: 1fr;
    }
}

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

    .page-app-download-installation__hero-subtitle {
        font-size: 1em;
    }

    .page-app-download-installation__section-title {
        font-size: 1.5em;
    }

    .page-app-download-installation__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-app-download-installation__section, .page-app-download-installation__hero {
        padding: 40px 0;
    }
}

.page-app-download-installation .keyword {
    font-weight: bold;
    color: inherit;
}