/* style/download-center-ios.css */

/* General styles for the page content area */
.page-download-center-ios {
    font-family: 'Arial', sans-serif;
    color: #333; /* Dark grey for general text on light background */
    line-height: 1.6;
    background-color: #f8f8f8; /* Light background for readability */
}

/* Container for content */
.page-download-center-ios__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Highlight color for keywords */
.page-download-center-ios .highlight {
    color: #003366; /* Deep blue for emphasis */
    font-weight: bold;
}

/* Hero Section */
.page-download-center-ios__hero {
    background: linear-gradient(135deg, #003366 0%, #0a4f94 100%); /* Deep blue gradient */
    color: #ffffff; /* White text on dark background */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-download-center-ios__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFCC00; /* Gold for main title */
}

.page-download-center-ios__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0; /* Lighter white for description */
}

.page-download-center-ios__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.page-download-center-ios__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-download-center-ios__btn--primary {
    background-color: #FFCC00; /* Gold button */
    color: #003366; /* Deep blue text on gold */
}

.page-download-center-ios__btn--primary:hover {
    background-color: #e6b800; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

.page-download-center-ios__btn--secondary {
    background-color: transparent;
    color: #FFCC00; /* Gold text for secondary */
    border: 2px solid #FFCC00;
}

.page-download-center-ios__btn--secondary:hover {
    background-color: #FFCC00;
    color: #003366;
    transform: translateY(-2px);
}

.page-download-center-ios__hero-image-wrapper {
    position: absolute;
    bottom: -50px; /* Adjust as needed */
    right: 5%;
    width: 300px; /* Adjust size */
    height: auto;
    opacity: 0.2; /* Subtle background image */
    z-index: 0;
}

.page-download-center-ios__hero-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Sections */
.page-download-center-ios__section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-download-center-ios__section:nth-of-type(even) {
    background-color: #f0f5fa; /* Light blueish background for alternating sections */
}

.page-download-center-ios__section-title {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

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

.page-download-center-ios__feature-item {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download-center-ios__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-download-center-ios__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.1));
}

.page-download-center-ios__feature-title {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
}

.page-download-center-ios__feature-item p {
    color: #555;
    font-size: 0.95em;
}

/* Lists */
.page-download-center-ios__list,
.page-download-center-ios__sub-list,
.page-download-center-ios__faq-list,
.page-download-center-ios__list--features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-download-center-ios__list li,
.page-download-center-ios__sub-list li,
.page-download-center-ios__faq-list li,
.page-download-center-ios__list--features li {
    background-color: #fbfbfb;
    border-left: 5px solid #FFCC00;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
    color: #444;
}

.page-download-center-ios__list li strong,
.page-download-center-ios__sub-list li strong,
.page-download-center-ios__faq-list li strong,
.page-download-center-ios__list--features li strong {
    color: #003366;
}

.page-download-center-ios__sub-list {
    margin-left: 20px;
    margin-top: 10px;
}

.page-download-center-ios__sub-list li {
    border-left-color: #003366;
}

/* Step-by-step Guide */
.page-download-center-ios__step-by-step {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
}

.page-download-center-ios__step-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    border-top: 5px solid #003366;
}

.page-download-center-ios__step-number {
    position: absolute;
    top: -20px;
    left: 20px;
    background-color: #FFCC00;
    color: #003366;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-download-center-ios__step-title {
    font-size: 1.8em;
    color: #003366;
    margin-top: 20px; /* Adjust for step number */
    margin-bottom: 15px;
}

.page-download-center-ios__step-item p {
    color: #555;
    margin-bottom: 15px;
}

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

.page-download-center-ios__qr-download {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.page-download-center-ios__qr-image {
    width: 180px;
    height: 180px;
    border: 5px solid #003366;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 10px;
}

.page-download-center-ios__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-download-center-ios__note {
    font-style: italic;
    color: #777;
    margin-top: 10px;
    text-align: center;
}

.page-download-center-ios__app-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Troubleshooting */
.page-download-center-ios__faq-list li {
    border-left-color: #0a4f94; /* A slightly lighter blue */
}
.page-download-center-ios__faq-list li p {
    margin-top: 5px;
    font-size: 0.9em;
    color: #666;
}

.page-download-center-ios__support-cta {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background-color: #e6f2ff; /* Very light blue background */
    border-radius: 8px;
    border: 1px dashed #003366;
}

.page-download-center-ios__support-cta p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #003366;
}

.page-download-center-ios__btn--contact {
    background-color: #003366;
    color: #FFCC00;
}

.page-download-center-ios__btn--contact:hover {
    background-color: #0a4f94;
    color: #ffffff;
}

/* Update App section */
.page-download-center-ios__image--full-width {
    max-width: 80%;
    display: block;
    margin: 30px auto 0 auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Experience section */
.page-download-center-ios__list--features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.page-download-center-ios__list--features li {
    border-left-color: #FFCC00;
    font-weight: 500;
}
.page-download-center-ios__list--features li strong {
    color: #003366;
}

.page-download-center-ios__cta-final {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background-color: #003366;
    color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-download-center-ios__cta-final p {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-download-center-ios__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
    border-radius: 10px;
}

/* Back to Top button */
.page-download-center-ios__back-to-top {
    text-align: center;
    margin: 40px 0;
}

.page-download-center-ios__back-to-top-btn {
    display: inline-block;
    background-color: #003366;
    color: #FFCC00;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-download-center-ios__back-to-top-btn:hover {
    background-color: #0a4f94;
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-download-center-ios__hero-title {
        font-size: 2.8em;
    }
    .page-download-center-ios__hero-description {
        font-size: 1.1em;
    }
    .page-download-center-ios__section-title {
        font-size: 2em;
    }
    .page-download-center-ios__hero-image-wrapper {
        display: none; /* Hide on smaller screens */
    }
}

@media (max-width: 768px) {
    .page-download-center-ios__hero {
        padding: 60px 0;
    }
    .page-download-center-ios__hero-title {
        font-size: 2.2em;
    }
    .page-download-center-ios__hero-description {
        font-size: 1em;
    }
    .page-download-center-ios__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-download-center-ios__btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-download-center-ios__section {
        padding: 40px 0;
    }
    .page-download-center-ios__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-download-center-ios__features-grid {
        grid-template-columns: 1fr;
    }
    .page-download-center-ios__step-number {
        position: static;
        margin: 0 auto 20px auto;
        transform: none;
    }
    .page-download-center-ios__step-title {
        margin-top: 0;
        text-align: center;
    }
    .page-download-center-ios__app-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-download-center-ios__btn--large {
        width: 90%;
        margin: 0 auto;
    }
    .page-download-center-ios__image--full-width {
        max-width: 95%;
    }
}

@media (max-width: 480px) {
    .page-download-center-ios__container {
        padding: 15px;
    }
    .page-download-center-ios__hero-title {
        font-size: 1.8em;
    }
    .page-download-center-ios__btn {
        font-size: 1em;
        padding: 12px 25px;
    }
    .page-download-center-ios__section-title {
        font-size: 1.5em;
    }
    .page-download-center-ios__feature-title {
        font-size: 1.3em;
    }
    .page-download-center-ios__step-title {
        font-size: 1.5em;
    }
    .page-download-center-ios__cta-final p {
        font-size: 1.1em;
    }
}