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

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

.page-app-download-ios-guide__hero {
    background: linear-gradient(135deg, #1A2E4C, #3A5B8A);
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.page-app-download-ios-guide__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 40px;
}

.page-app-download-ios-guide__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700;
    line-height: 1.2;
    font-weight: bold;
}

.page-app-download-ios-guide__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-app-download-ios-guide__hero-image-wrapper {
    position: absolute;
    bottom: -50px;
    right: 0;
    width: 40%;
    max-width: 600px;
    z-index: 1;
    opacity: 0.8;
}

.page-app-download-ios-guide__hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.page-app-download-ios-guide__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    text-align: center;
}

.page-app-download-ios-guide__button--primary {
    background-color: #FFD700;
    color: #1A2E4C;
    border: 2px solid #FFD700;
}

.page-app-download-ios-guide__button--primary:hover {
    background-color: #E5C100;
    color: #000000;
    transform: translateY(-2px);
}

.page-app-download-ios-guide__button--secondary {
    background-color: #1A2E4C;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-app-download-ios-guide__button--secondary:hover {
    background-color: #0F1D33;
    color: #E5C100;
    transform: translateY(-2px);
}

.page-app-download-ios-guide__button--tertiary {
    background-color: #F0F2F5;
    color: #1A2E4C;
    border: 2px solid #1A2E4C;
}

.page-app-download-ios-guide__button--tertiary:hover {
    background-color: #E0E0E0;
    color: #0F1D33;
    transform: translateY(-2px);
}

.page-app-download-ios-guide__section {
    padding: 60px 0;
    background-color: #FFFFFF;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-app-download-ios-guide__section--benefits {
    background-color: #F8F9FA;
}

.page-app-download-ios-guide__section-title {
    font-size: 2.5em;
    color: #1A2E4C;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

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

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

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

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

.page-app-download-ios-guide__benefit-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.page-app-download-ios-guide__benefit-text {
    color: #444;
    font-size: 1em;
}

.page-app-download-ios-guide__step-by-step {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.page-app-download-ios-guide__step-item {
    background-color: #F8F9FA;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.page-app-download-ios-guide__step-title {
    font-size: 1.8em;
    color: #1A2E4C;
    margin-bottom: 20px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.page-app-download-ios-guide__step-item p {
    color: #444;
    margin-bottom: 15px;
}

.page-app-download-ios-guide__step-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 25px auto;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-app-download-ios-guide__ordered-list {
    list-style-type: decimal;
    padding-left: 25px;
    color: #444;
    margin-top: 20px;
}

.page-app-download-ios-guide__ordered-list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-app-download-ios-guide__ordered-list li strong {
    color: #1A2E4C;
}

.page-app-download-ios-guide__section--faq {
    background-color: #FFFFFF;
}

.page-app-download-ios-guide__faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.page-app-download-ios-guide__faq-item {
    background-color: #F8F9FA;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    overflow: hidden;
}

.page-app-download-ios-guide__faq-question {
    font-size: 1.3em;
    color: #1A2E4C;
    padding: 20px;
    margin: 0;
    cursor: pointer;
    background-color: #EFEFEF;
    border-bottom: 1px solid #E0E0E0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-app-download-ios-guide__faq-question::after {
    content: '+';
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-app-download-ios-guide__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-app-download-ios-guide__faq-answer {
    padding: 20px;
    color: #555;
    font-size: 1em;
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-app-download-ios-guide__faq-answer.active {
    display: block;
    max-height: 500px; /* Adjust as needed */
    padding: 20px;
}

.page-app-download-ios-guide__faq-answer ul {
    list-style-type: disc;
    padding-left: 25px;
    margin-top: 10px;
}

.page-app-download-ios-guide__faq-answer li {
    margin-bottom: 5px;
}

.page-app-download-ios-guide__faq-question:hover {
    background-color: #E0E0E0;
}

.page-app-download-ios-guide__section--cta {
    background: linear-gradient(to right, #1A2E4C, #0F1D33);
    color: #FFFFFF;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-bottom: 100px; /* Adjust for image */
}

.page-app-download-ios-guide__cta-content {
    position: relative;
    z-index: 2;
}

.page-app-download-ios-guide__section--cta .page-app-download-ios-guide__section-title {
    color: #FFD700;
}

.page-app-download-ios-guide__section--cta .page-app-download-ios-guide__section-description {
    color: #E0E0E0;
}

.page-app-download-ios-guide__cta-features {
    list-style: none;
    padding: 0;
    margin: 30px auto 50px auto;
    max-width: 800px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    text-align: left;
}

.page-app-download-ios-guide__cta-features li {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 1.05em;
    border-left: 3px solid #FFD700;
}

.page-app-download-ios-guide__cta-features li strong {
    color: #FFD700;
}

.page-app-download-ios-guide__cta-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    display: block;
    margin: 50px auto -80px auto; /* Pulls image slightly out of section */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 3;
}

.page-app-download-ios-guide__section--contact {
    background-color: #EFEFEF;
    text-align: center;
    padding-bottom: 80px;
}

.page-app-download-ios-guide__section--contact .page-app-download-ios-guide__section-title {
    color: #1A2E4C;
}

.page-app-download-ios-guide__section--contact .page-app-download-ios-guide__section-description {
    color: #555;
    margin-bottom: 40px;
}

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

    .page-app-download-ios-guide__hero-image-wrapper {
        width: 50%;
        bottom: -30px;
    }
}

@media (max-width: 768px) {
    .page-app-download-ios-guide__hero {
        padding: 60px 0;
        min-height: 350px;
    }

    .page-app-download-ios-guide__title {
        font-size: 2.2em;
    }

    .page-app-download-ios-guide__subtitle {
        font-size: 1.1em;
    }

    .page-app-download-ios-guide__hero-image-wrapper {
        width: 60%;
        bottom: -20px;
    }

    .page-app-download-ios-guide__section-title {
        font-size: 2em;
    }

    .page-app-download-ios-guide__benefit-list {
        grid-template-columns: 1fr;
    }

    .page-app-download-ios-guide__step-item {
        padding: 30px;
    }

    .page-app-download-ios-guide__step-title {
        font-size: 1.5em;
    }

    .page-app-download-ios-guide__faq-question {
        font-size: 1.1em;
    }

    .page-app-download-ios-guide__cta-features {
        grid-template-columns: 1fr;
    }

    .page-app-download-ios-guide__cta-image {
        max-width: 300px;
        margin-bottom: -60px;
    }
}

@media (max-width: 480px) {
    .page-app-download-ios-guide__hero {
        padding: 40px 0;
        min-height: 300px;
    }

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

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

    .page-app-download-ios-guide__hero-image-wrapper {
        width: 80%;
        bottom: -10px;
        right: 10%;
        left: 10%;
    }

    .page-app-download-ios-guide__button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-app-download-ios-guide__section {
        padding: 40px 0;
    }

    .page-app-download-ios-guide__section-title {
        font-size: 1.6em;
    }

    .page-app-download-ios-guide__section-description {
        font-size: 0.95em;
    }

    .page-app-download-ios-guide__step-item {
        padding: 20px;
    }

    .page-app-download-ios-guide__step-title {
        font-size: 1.3em;
    }

    .page-app-download-ios-guide__faq-question {
        font-size: 1em;
        padding: 15px;
    }

    .page-app-download-ios-guide__faq-answer {
        padding: 15px;
    }

    .page-app-download-ios-guide__cta-image {
        max-width: 250px;
        margin-bottom: -40px;
    }
}