/* style/app-download-installation-steps.css */
.page-app-download-installation-steps {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for general text on dark background */
    line-height: 1.6;
    background-color: #1A1D2E; /* Slightly lighter dark blue for overall background */
}

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

.page-app-download-installation-steps__hero {
    background: linear-gradient(135deg, #2A2E43 0%, #1A1D2E 100%); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
}

.page-app-download-installation-steps__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold for main title */
    line-height: 1.2;
}

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

.page-app-download-installation-steps__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #D3D3D3;
}

.page-app-download-installation-steps__hero-actions .page-app-download-installation-steps__btn {
    margin: 0 15px;
}

.page-app-download-installation-steps__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-app-download-installation-steps__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #2A2E43; /* Dark blue text on gold */
}

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

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

.page-app-download-installation-steps__btn--secondary:hover {
    background-color: #FFD700;
    color: #2A2E43;
    transform: translateY(-2px);
}

.page-app-download-installation-steps__btn--tertiary {
    background-color: #2A2E43;
    color: #FFD700;
    border: 2px solid #2A2E43;
}

.page-app-download-installation-steps__btn--tertiary:hover {
    background-color: #3f445e;
    border-color: #3f445e;
    transform: translateY(-2px);
}

.page-app-download-installation-steps__section {
    padding: 80px 0;
    background-color: #2A2E43; /* Dark blue for sections */
    margin-bottom: 20px;
}

.page-app-download-installation-steps__section:nth-child(even) {
    background-color: #1A1D2E;
}

.page-app-download-installation-steps__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.page-app-download-installation-steps__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-steps__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #D3D3D3;
}

.page-app-download-installation-steps__why-app .page-app-download-installation-steps__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-app-download-installation-steps__feature-item {
    background-color: #1A1D2E; /* Darker background for feature items */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.page-app-download-installation-steps__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(1.2); /* Make icons slightly brighter */
}

.page-app-download-installation-steps__feature-item h3 {
    color: #FFD700; /* Gold for feature titles */
    font-size: 1.4em;
    margin-bottom: 15px;
}

.page-app-download-installation-steps__feature-item p {
    color: #D3D3D3;
    font-size: 1em;
}

.page-app-download-installation-steps__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.page-app-download-installation-steps__step-item {
    background-color: #1A1D2E; /* Darker background for step items */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.page-app-download-installation-steps__step-number {
    background-color: #FFD700; /* Gold for step numbers */
    color: #2A2E43; /* Dark blue text */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    font-weight: bold;
    margin: 0 auto 25px auto;
}

.page-app-download-installation-steps__step-item h3 {
    color: #FFD700; /* Gold for step titles */
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-app-download-installation-steps__step-item p {
    color: #D3D3D3;
    font-size: 1em;
    margin-bottom: 20px;
}

.page-app-download-installation-steps__step-item a {
    color: #FFD700;
    text-decoration: underline;
}

.page-app-download-installation-steps__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-app-download-installation-steps__cta-block {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-app-download-installation-steps__cta-block p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.page-app-download-installation-steps__faq-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-app-download-installation-steps__faq-item {
    background-color: #1A1D2E; /* Darker background for FAQ items */
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-app-download-installation-steps__faq-item h3 {
    color: #FFD700; /* Gold for FAQ questions */
    font-size: 1.3em;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-app-download-installation-steps__faq-item h3::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-app-download-installation-steps__faq-item.active h3::after {
    content: '-';
    transform: rotate(180deg);
}

.page-app-download-installation-steps__faq-item p {
    color: #D3D3D3;
    font-size: 1em;
    margin-top: 15px;
    display: none;
}

.page-app-download-installation-steps__faq-item.active p {
    display: block;
}

.page-app-download-installation-steps__final-cta {
    background: linear-gradient(45deg, #2A2E43, #1A1D2E);
    padding: 100px 0;
    text-align: center;
}

.page-app-download-installation-steps__final-cta .page-app-download-installation-steps__section-title {
    color: #FFD700;
}

.page-app-download-installation-steps__final-cta .page-app-download-installation-steps__section-description {
    color: #D3D3D3;
    margin-bottom: 50px;
}

.page-app-download-installation-steps__final-actions .page-app-download-installation-steps__btn {
    margin: 0 10px;
}

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

.page-app-download-installation-steps .highlight {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-app-download-installation-steps__hero-title {
        font-size: 2.5em;
    }
    .page-app-download-installation-steps__section-title {
        font-size: 2em;
    }
    .page-app-download-installation-steps__hero-actions, .page-app-download-installation-steps__final-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-app-download-installation-steps__hero-actions .page-app-download-installation-steps__btn,
    .page-app-download-installation-steps__final-actions .page-app-download-installation-steps__btn {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .page-app-download-installation-steps__hero {
        padding: 80px 0;
    }
    .page-app-download-installation-steps__hero-title {
        font-size: 2em;
    }
    .page-app-download-installation-steps__hero-subtitle {
        font-size: 1.1em;
    }
    .page-app-download-installation-steps__section {
        padding: 60px 0;
    }
    .page-app-download-installation-steps__section-title {
        font-size: 1.8em;
    }
    .page-app-download-installation-steps__features, .page-app-download-installation-steps__steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-app-download-installation-steps__hero {
        padding: 60px 0;
    }
    .page-app-download-installation-steps__hero-title {
        font-size: 1.8em;
    }
    .page-app-download-installation-steps__section-title {
        font-size: 1.5em;
    }
    .page-app-download-installation-steps__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
}