/* style/app-download-ios-guide.css */
.page-app-download-ios-guide {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark backgrounds */
    background-color: #1A1A2E; /* Main background color */
}

.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, #1A1A2E 0%, #301934 100%); /* Dark gradient for hero */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-app-download-ios-guide__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #E94560; /* Highlight color for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-app-download-ios-guide__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #CCCCCC;
}

.page-app-download-ios-guide__hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-top: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.page-app-download-ios-guide__btn--primary {
    background-color: #E94560; /* Accent color for primary CTA */
    color: #FFFFFF;
    border: 2px solid #E94560;
}

.page-app-download-ios-guide__btn--primary:hover {
    background-color: #C73B51;
    transform: translateY(-3px);
}

.page-app-download-ios-guide__btn--secondary {
    background-color: transparent;
    color: #E94560;
    border: 2px solid #E94560;
}

.page-app-download-ios-guide__btn--secondary:hover {
    background-color: #E94560;
    color: #FFFFFF;
    transform: translateY(-3px);
}

.page-app-download-ios-guide__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

.page-app-download-ios-guide__section {
    padding: 60px 0;
    background-color: #2A2A3E; /* Slightly lighter dark background for sections */
    border-bottom: 1px solid rgba(233, 69, 96, 0.2);
}

.page-app-download-ios-guide__section:nth-child(odd) {
    background-color: #1A1A2E;
}

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

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

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

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

.page-app-download-ios-guide__benefit-item {
    background-color: #303045; /* Darker background for benefit cards */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-app-download-ios-guide__benefit-item:hover {
    transform: translateY(-5px);
    background-color: #3A3A50;
}

.page-app-download-ios-guide__benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: invert(1) brightness(1.5) sepia(1) hue-rotate(-30deg) saturate(3); /* Make icons red */
}

.page-app-download-ios-guide__benefit-title {
    font-size: 1.6em;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.page-app-download-ios-guide__benefit-text {
    font-size: 1em;
    line-height: 1.6;
    color: #B0B0B0;
}

.page-app-download-ios-guide__step-by-step {
    background-color: #303045;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-app-download-ios-guide__step-title {
    font-size: 2em;
    color: #E94560;
    margin-bottom: 25px;
    text-align: center;
}

.page-app-download-ios-guide__steps-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-app-download-ios-guide__step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    background-color: #3A3A50;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-app-download-ios-guide__step-number {
    background-color: #E94560;
    color: #FFFFFF;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2em;
    flex-shrink: 0;
    margin-right: 15px;
}

.page-app-download-ios-guide__step-text {
    font-size: 1.1em;
    line-height: 1.6;
    color: #CCCCCC;
    flex-grow: 1;
}

.page-app-download-ios-guide__step-text strong {
    color: #FFFFFF;
}

.page-app-download-ios-guide__inline-link {
    color: #E94560;
    text-decoration: none;
    font-weight: bold;
}

.page-app-download-ios-guide__inline-link:hover {
    text-decoration: underline;
}

.page-app-download-ios-guide__qr-code {
    display: block;
    margin: 30px auto;
    width: 200px;
    height: 200px;
    border: 5px solid #E94560;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-app-download-ios-guide__trust-steps {
    list-style: decimal;
    padding-left: 40px;
    font-size: 1.1em;
    line-height: 1.8;
    color: #CCCCCC;
    margin-bottom: 40px;
}

.page-app-download-ios-guide__trust-steps li {
    margin-bottom: 10px;
    color: #E0E0E0;
}

.page-app-download-ios-guide__trust-steps strong {
    color: #FFFFFF;
}

.page-app-download-ios-guide__trust-image {
    display: block;
    max-width: 500px;
    width: 100%;
    height: auto;
    margin: 40px auto 0 auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-app-download-ios-guide__grid-2-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-app-download-ios-guide__card {
    background-color: #303045;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.page-app-download-ios-guide__card-title {
    font-size: 1.8em;
    color: #E94560;
    margin-bottom: 20px;
}

.page-app-download-ios-guide__card-text {
    font-size: 1em;
    line-height: 1.6;
    color: #B0B0B0;
    margin-bottom: 30px;
}

.page-app-download-ios-guide__features-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.page-app-download-ios-guide__features-list li {
    background-color: #303045;
    padding: 20px;
    border-left: 5px solid #E94560;
    border-radius: 8px;
    font-size: 1.1em;
    line-height: 1.7;
    color: #E0E0E0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-app-download-ios-guide__features-list li strong {
    color: #FFFFFF;
    font-size: 1.2em;
    display: block;
    margin-bottom: 5px;
}

.page-app-download-ios-guide__features-image {
    display: block;
    max-width: 800px;
    width: 100%;
    height: auto;
    margin: 40px auto 0 auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-app-download-ios-guide__faq-list {
    margin-top: 40px;
}

.page-app-download-ios-guide__faq-item {
    background-color: #303045;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-app-download-ios-guide__faq-question {
    font-size: 1.3em;
    color: #E94560;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-app-download-ios-guide__faq-question::after {
    content: '+';
    font-size: 1.5em;
    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 {
    font-size: 1em;
    line-height: 1.6;
    color: #B0B0B0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 10px;
}

.page-app-download-ios-guide__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding: 10px;
}

.page-app-download-ios-guide__disclaimer {
    font-size: 0.9em;
    color: #888888;
    text-align: center;
    margin-top: 30px;
}

.highlight-text {
    color: #E94560;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-app-download-ios-guide__hero-title {
        font-size: 2.5em;
    }
    .page-app-download-ios-guide__hero-subtitle {
        font-size: 1.2em;
    }
    .page-app-download-ios-guide__section-title {
        font-size: 2em;
    }
    .page-app-download-ios-guide__benefits-grid, .page-app-download-ios-guide__grid-2-cols {
        grid-template-columns: 1fr;
    }
    .page-app-download-ios-guide__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .page-app-download-ios-guide__step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .page-app-download-ios-guide__hero {
        padding: 60px 0;
    }
    .page-app-download-ios-guide__hero-title {
        font-size: 2em;
    }
    .page-app-download-ios-guide__hero-subtitle {
        font-size: 1em;
    }
    .page-app-download-ios-guide__section {
        padding: 40px 0;
    }
    .page-app-download-ios-guide__section-title {
        font-size: 1.8em;
    }
    .page-app-download-ios-guide__step-by-step {
        padding: 30px;
    }
    .page-app-download-ios-guide__step-title {
        font-size: 1.6em;
    }
}

@media (max-width: 480px) {
    .page-app-download-ios-guide__hero-title {
        font-size: 1.8em;
    }
    .page-app-download-ios-guide__hero-subtitle {
        font-size: 0.9em;
    }
    .page-app-download-ios-guide__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-app-download-ios-guide__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-app-download-ios-guide__section-title {
        font-size: 1.5em;
    }
    .page-app-download-ios-guide__benefit-title {
        font-size: 1.4em;
    }
    .page-app-download-ios-guide__card-title {
        font-size: 1.5em;
    }
}