/* style/app-download-installation-guide.css */
.page-app-download-installation-guide {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #ffffff; /* Default text color for dark sections */
    background-color: #0A192F; /* Main background color */
    margin: 0;
    padding: 0;
}

.page-app-download-installation-guide a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-app-download-installation-guide a:hover {
    color: #e6c200;
    text-decoration: underline;
}

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

.page-app-download-installation-guide__hero {
    background: linear-gradient(135deg, #0A192F 0%, #2a416b 100%); /* Slightly lighter gradient for hero */
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-app-download-installation-guide__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    line-height: 1.2;
    font-weight: bold;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

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

.page-app-download-installation-guide__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-app-download-installation-guide__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, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    min-width: 180px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-app-download-installation-guide__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Dark blue text on gold */
    border: 2px solid #FFD700;
}

.page-app-download-installation-guide__btn--primary:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-app-download-installation-guide__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text on dark blue background */
    border: 2px solid #FFD700;
}

.page-app-download-installation-guide__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-app-download-installation-guide__section {
    padding: 60px 0;
    color: #ffffff; /* Default text color */
}

.page-app-download-installation-guide__section--alt {
    background-color: #0E203C; /* Slightly lighter dark blue for alternate sections */
}

.page-app-download-installation-guide__section-title {
    font-size: 2.2em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    font-weight: bold;
}

.page-app-download-installation-guide__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-app-download-installation-guide__features,
.page-app-download-installation-guide__step-by-step {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-app-download-installation-guide__feature-item,
.page-app-download-installation-guide__step-item {
    background-color: #1A2A47; /* Darker blue for feature/step cards */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-app-download-installation-guide__feature-item p,
.page-app-download-installation-guide__step-item p {
    color: #cccccc;
}

.page-app-download-installation-guide__feature-title,
.page-app-download-installation-guide__step-title {
    font-size: 1.5em;
    color: #FFD700; /* Gold for sub-titles */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-app-download-installation-guide__list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-app-download-installation-guide__list li {
    background-color: #1A2A47;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-app-download-installation-guide__list-title {
    font-size: 1.3em;
    color: #FFD700;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-app-download-installation-guide__image-wrapper {
    margin-top: 20px;
    text-align: center;
}

.page-app-download-installation-guide__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.5);
}

.page-app-download-installation-guide__image-caption {
    font-size: 0.9em;
    color: #bbb;
    margin-top: 10px;
}

.page-app-download-installation-guide__faq-list,
.page-app-download-installation-guide__highlights-list {
    list-style: none;
    padding: 0;
}

.page-app-download-installation-guide__faq-item,
.page-app-download-installation-guide__highlights-list li {
    background-color: #1A2A47;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: #ffffff;
}

.page-app-download-installation-guide__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer; /* For JS accordion */
    position: relative;
    padding-right: 30px;
    font-weight: bold;
}

.page-app-download-installation-guide__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: #FFD700;
}

.page-app-download-installation-guide__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(0deg);
}

.page-app-download-installation-guide__faq-answer {
    display: none; /* Hidden by default for JS accordion */
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
    color: #ddd;
}

.page-app-download-installation-guide__faq-answer p {
    margin-bottom: 10px;
}

.page-app-download-installation-guide__faq-answer strong {
    color: #FFD700;
}

.page-app-download-installation-guide__sub-list {
    list-style: disc;
    margin-left: 20px;
    color: #ddd;
}

.page-app-download-installation-guide__highlights-title {
    font-size: 1.3em;
    color: #FFD700;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-app-download-installation-guide__final-cta {
    text-align: center;
    font-size: 1.2em;
    margin-top: 40px;
    margin-bottom: 30px;
    color: #ffffff;
}

.page-app-download-installation-guide__final-cta a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-app-download-installation-guide__final-cta a:hover {
    text-decoration: underline;
}

.page-app-download-installation-guide__conclusion-section {
    text-align: center;
    background-color: #0E203C;
    padding-bottom: 80px;
}

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

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

    .page-app-download-installation-guide__features,
    .page-app-download-installation-guide__step-by-step {
        grid-template-columns: 1fr;
    }

    .page-app-download-installation-guide__cta-buttons {
        flex-direction: column;
    }

    .page-app-download-installation-guide__btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-app-download-installation-guide__hero,
    .page-app-download-installation-guide__section {
        padding: 40px 0;
    }

    .page-app-download-installation-guide__title {
        font-size: 1.8em;
    }

    .page-app-download-installation-guide__subtitle {
        font-size: 1em;
    }

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

    .page-app-download-installation-guide__feature-item,
    .page-app-download-installation-guide__step-item {
        padding: 20px;
    }
}