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

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

.page-app-download-ios__hero {
    background: linear-gradient(135deg, #0A2463 0%, #1A3A7A 100%); /* Dark blue gradient */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-app-download-ios__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #FFD700; /* Gold for highlight */
}

.page-app-download-ios__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    line-height: 1.5;
    color: #e0e0e0;
}

.page-app-download-ios__hero-image-wrapper {
    position: absolute;
    bottom: -50px; /* Adjust to show part of the phone */
    right: -100px;
    width: 400px;
    height: 400px;
    opacity: 0.2;
    z-index: 1;
}

.page-app-download-ios__hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.page-app-download-ios__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1em;
    border: 2px solid transparent;
    cursor: pointer;
}

.page-app-download-ios__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0A2463; /* Dark Blue */
    border-color: #FFD700;
}

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

.page-app-download-ios__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border-color: #FFD700;
    margin-left: 15px;
}

.page-app-download-ios__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2463;
    transform: translateY(-2px);
}

.page-app-download-ios__section {
    padding: 60px 0;
}

.page-app-download-ios__section--dark {
    background-color: #0A2463;
    color: #e0e0e0;
}

.page-app-download-ios__section--dark .page-app-download-ios__section-title {
    color: #FFD700;
}

.page-app-download-ios__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
    color: #0A2463;
    font-weight: 700;
}

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

.page-app-download-ios__section--dark .page-app-download-ios__section-description {
    color: #ccc;
}

.page-app-download-ios__feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin-top: 50px;
}

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

.page-app-download-ios__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.page-app-download-ios__feature-item h3 {
    color: #0A2463;
    font-size: 1.6em;
    margin-top: 20px;
    margin-bottom: 10px;
}

.page-app-download-ios__feature-item p {
    color: #666;
    font-size: 1em;
}

.page-app-download-ios__feature-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

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

.page-app-download-ios__step-item {
    background-color: #1A3A7A;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: #fff;
}

.page-app-download-ios__step-number {
    background-color: #FFD700;
    color: #0A2463;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    font-weight: 700;
    margin: 0 auto 20px auto;
}

.page-app-download-ios__step-item h3 {
    color: #FFD700;
    font-size: 1.6em;
    margin-bottom: 15px;
}

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

.page-app-download-ios__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-app-download-ios__link-inline {
    color: #FFD700;
    text-decoration: underline;
}

.page-app-download-ios__link-inline:hover {
    color: #e6c200;
}

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

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

.page-app-download-ios__feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.page-app-download-ios__feature-card-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 15px;
}

.page-app-download-ios__feature-card h3 {
    color: #0A2463;
    font-size: 1.6em;
    margin-bottom: 10px;
}

.page-app-download-ios__feature-card p {
    color: #666;
    font-size: 1em;
}

.page-app-download-ios__faq-item {
    background-color: #1A3A7A;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-app-download-ios__faq-item h3 {
    color: #FFD700;
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-app-download-ios__faq-item p {
    color: #e0e0e0;
    font-size: 1em;
}

.page-app-download-ios__contact-support {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1em;
    color: #e0e0e0;
}

.page-app-download-ios__section--cta {
    background: linear-gradient(135deg, #FFD700 0%, #e6c200 100%); /* Gold gradient */
    color: #0A2463;
    text-align: center;
    padding: 80px 0;
}

.page-app-download-ios__cta-title {
    font-size: 2.8em;
    color: #0A2463;
    margin-bottom: 20px;
}

.page-app-download-ios__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #333;
}

.page-app-download-ios__cta-buttons .page-app-download-ios__btn {
    margin: 0 10px;
}

/* Highlight text */
.page-app-download-ios__highlight-text {
    color: #FFD700;
    font-weight: 600;
}

.page-app-download-ios__section--dark .page-app-download-ios__highlight-text {
    color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-app-download-ios__hero-title {
        font-size: 2.8em;
    }
    .page-app-download-ios__hero-description {
        font-size: 1.1em;
    }
    .page-app-download-ios__hero-image-wrapper {
        width: 300px;
        height: 300px;
        bottom: -30px;
        right: -50px;
    }
    .page-app-download-ios__section-title {
        font-size: 2em;
    }
    .page-app-download-ios__feature-list,
    .page-app-download-ios__steps-grid,
    .page-app-download-ios__features-grid {
        grid-template-columns: 1fr;
    }
    .page-app-download-ios__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-app-download-ios__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-app-download-ios__hero {
        padding: 60px 0;
    }
    .page-app-download-ios__hero-title {
        font-size: 2.2em;
    }
    .page-app-download-ios__hero-description {
        font-size: 1em;
    }
    .page-app-download-ios__hero-image-wrapper {
        display: none; /* Hide image on smaller screens */
    }
    .page-app-download-ios__section {
        padding: 40px 0;
    }
    .page-app-download-ios__section-title {
        font-size: 1.8em;
    }
    .page-app-download-ios__btn {
        width: 100%;
        margin: 10px 0;
    }
    .page-app-download-ios__cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .page-app-download-ios__cta-buttons .page-app-download-ios__btn {
        margin: 10px 0;
    }
}