/* style/resources-mobile-app-download.css */
.page-resources-mobile-app-download {
    font-family: 'Arial', sans-serif;
    color: #f8f8f8; /* Light text for dark background */
    background-color: #1a1a1a; /* Very dark grey background */
    line-height: 1.6;
}

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

.page-resources-mobile-app-download__hero {
    background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%); /* Burgundy to Gold gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF; /* White text on gradient */
}

.page-resources-mobile-app-download__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFFFFF; /* White title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-mobile-app-download__subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #EEEEEE;
}

.page-resources-mobile-app-download__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-resources-mobile-app-download__button {
    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 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-mobile-app-download__button--primary {
    background-color: #FFD700; /* Gold button */
    color: #8B0000; /* Burgundy text */
    border: 2px solid #FFD700;
}

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

.page-resources-mobile-app-download__button--secondary {
    background-color: #8B0000; /* Burgundy button */
    color: #FFD700; /* Gold text */
    border: 2px solid #8B0000;
}

.page-resources-mobile-app-download__button--secondary:hover {
    background-color: #7a0000;
    transform: translateY(-2px);
}

.page-resources-mobile-app-download__button--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-resources-mobile-app-download__section {
    padding: 60px 0;
}

.page-resources-mobile-app-download__section--intro {
    background-color: #222222;
}

.page-resources-mobile-app-download__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold title */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-resources-mobile-app-download__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #8B0000; /* Burgundy accent */
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

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

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

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

.page-resources-mobile-app-download__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-resources-mobile-app-download__feature-title {
    font-size: 1.5em;
    color: #FFD700; /* Gold feature title */
    margin-bottom: 15px;
}

.page-resources-mobile-app-download__feature-description {
    color: #CCCCCC;
}

.page-resources-mobile-app-download__text {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #CCCCCC;
}

.page-resources-mobile-app-download__step-by-step {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 40px;
}

.page-resources-mobile-app-download__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #2e2e2e;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-mobile-app-download__step:nth-child(even) {
    background-color: #282828;
}

.page-resources-mobile-app-download__step-number {
    width: 60px;
    height: 60px;
    background-color: #FFD700; /* Gold number background */
    color: #8B0000; /* Burgundy number text */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2em;
    font-weight: bold;
    margin-bottom: 25px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.page-resources-mobile-app-download__step-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold step title */
    margin-bottom: 15px;
}

.page-resources-mobile-app-download__step-description {
    font-size: 1.05em;
    color: #CCCCCC;
    margin-bottom: 25px;
    max-width: 800px;
}

.page-resources-mobile-app-download__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-top: 20px;
}

.page-resources-mobile-app-download__cta-block {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: #1f1f1f;
    border-radius: 10px;
    border: 1px solid #333;
}

.page-resources-mobile-app-download__cta-block p {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 25px;
}

.page-resources-mobile-app-download__benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-resources-mobile-app-download__benefits-list li {
    background-color: #2e2e2e;
    margin-bottom: 15px;
    padding: 20px 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-size: 1.1em;
    color: #F0F0F0;
}

.page-resources-mobile-app-download__list-icon {
    width: 35px;
    height: 35px;
    margin-right: 20px;
    filter: drop-shadow(0 0 3px #FFD700);
}

.page-resources-mobile-app-download__benefits-list strong {
    color: #FFD700;
}

.page-resources-mobile-app-download__faq-item {
    background-color: #2e2e2e;
    padding: 25px 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-mobile-app-download__faq-question {
    font-size: 1.3em;
    color: #FFD700; /* Gold FAQ question */
    margin-bottom: 10px;
}

.page-resources-mobile-app-download__faq-answer {
    font-size: 1.0em;
    color: #CCCCCC;
}

.page-resources-mobile-app-download__inline-link {
    color: #FFD700; /* Gold link */
    text-decoration: none;
    font-weight: bold;
}

.page-resources-mobile-app-download__inline-link:hover {
    text-decoration: underline;
    color: #e6c200;
}

.page-resources-mobile-app-download__text-center {
    text-align: center;
}

.page-resources-mobile-app-download__section--final-cta {
    background-color: #1a1a1a;
    padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-mobile-app-download__title {
        font-size: 2.8em;
    }
    .page-resources-mobile-app-download__section-title {
        font-size: 2em;
    }
    .page-resources-mobile-app-download__grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-resources-mobile-app-download__hero {
        padding: 80px 0;
    }
    .page-resources-mobile-app-download__title {
        font-size: 2.2em;
    }
    .page-resources-mobile-app-download__subtitle {
        font-size: 1em;
    }
    .page-resources-mobile-app-download__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-mobile-app-download__button {
        width: 80%;
        margin: 0 auto;
    }
    .page-resources-mobile-app-download__section {
        padding: 40px 0;
    }
    .page-resources-mobile-app-download__section-title {
        font-size: 1.8em;
    }
    .page-resources-mobile-app-download__step {
        padding: 30px;
    }
    .page-resources-mobile-app-download__step-title {
        font-size: 1.5em;
    }
    .page-resources-mobile-app-download__step-number {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
    }
    .page-resources-mobile-app-download__benefits-list li {
        flex-direction: column;
        text-align: center;
    }
    .page-resources-mobile-app-download__list-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .page-resources-mobile-app-download__faq-question {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-resources-mobile-app-download__hero {
        padding: 60px 0;
    }
    .page-resources-mobile-app-download__title {
        font-size: 1.8em;
    }
    .page-resources-mobile-app-download__subtitle {
        font-size: 0.9em;
    }
    .page-resources-mobile-app-download__button {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-resources-mobile-app-download__section-title {
        font-size: 1.5em;
    }
    .page-resources-mobile-app-download__feature-item {
        padding: 20px;
    }
    .page-resources-mobile-app-download__feature-title {
        font-size: 1.3em;
    }
    .page-resources-mobile-app-download__step {
        padding: 20px;
    }
    .page-resources-mobile-app-download__step-title {
        font-size: 1.3em;
    }
    .page-resources-mobile-app-download__cta-block p {
        font-size: 1.1em;
    }
}