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

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

/* Hero Section */
.page-app-download-ios-guide__hero-section {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Darker blue gradient */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-app-download-ios-guide__hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    transform: rotate(45deg);
    z-index: 0;
}

.page-app-download-ios-guide__hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    transform: rotate(45deg);
    z-index: 0;
}

.page-app-download-ios-guide__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #ffffff; /* White text for contrast */
    position: relative;
    z-index: 1;
}

.page-app-download-ios-guide__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #e0e0e0; /* Slightly off-white for subtitle */
    position: relative;
    z-index: 1;
}

/* Buttons */
.page-app-download-ios-guide__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
    position: relative;
    z-index: 1;
}

.page-app-download-ios-guide__button--primary {
    background-color: #ffc107; /* Secondary color for primary action */
    color: #0056b3; /* Darker blue for text on bright background */
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.page-app-download-ios-guide__button--primary:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.page-app-download-ios-guide__button--secondary {
    background-color: #007bff; /* Primary color for secondary action */
    color: #ffffff; /* White text for contrast */
    border: 2px solid #007bff;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.page-app-download-ios-guide__button--secondary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.5);
}

.page-app-download-ios-guide__button--tertiary {
    background-color: transparent;
    color: #007bff;
    border: 2px solid #007bff;
    padding: 10px 20px;
    font-size: 1em;
}

.page-app-download-ios-guide__button--tertiary:hover {
    background-color: #007bff;
    color: #ffffff;
}

/* Content Section */
.page-app-download-ios-guide__content-section,
.page-app-download-ios-guide__guide-section,
.page-app-download-ios-guide__troubleshooting-section,
.page-app-download-ios-guide__cta-section {
    padding: 60px 0;
}

.page-app-download-ios-guide__section-title {
    font-size: 2.2em;
    color: #0056b3; /* Darker blue for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-app-download-ios-guide__intro-text {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 50px;
    color: #555;
}

/* Benefits Grid */
.page-app-download-ios-guide__grid-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.page-app-download-ios-guide__benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-app-download-ios-guide__benefit-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 5px rgba(0, 123, 255, 0.2));
}

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

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

/* Step-by-step Guide */
.page-app-download-ios-guide__guide-section {
    background-color: #ffffff;
}

.page-app-download-ios-guide__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
    text-align: center;
}

.page-app-download-ios-guide__step:last-child {
    margin-bottom: 0;
}

.page-app-download-ios-guide__step-number {
    background-color: #007bff;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

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

.page-app-download-ios-guide__step p {
    max-width: 800px;
    margin-bottom: 25px;
    font-size: 1.05em;
    color: #444;
}

.page-app-download-ios-guide__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-app-download-ios-guide__trust-steps {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 30px auto;
    padding-left: 20px;
    list-style-type: decimal;
    color: #333;
}

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

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

.page-app-download-ios-guide__note {
    font-style: italic;
    color: #777;
    margin-top: 20px;
}

/* Troubleshooting/FAQ Section */
.page-app-download-ios-guide__troubleshooting-section {
    background-color: #f0f8ff; /* Light blue background */
}

.page-app-download-ios-guide__bg--light {
    background-color: #f0f8ff;
}

.page-app-download-ios-guide__faq-item {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-app-download-ios-guide__faq-question {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-app-download-ios-guide__faq-answer {
    color: #555;
    font-size: 1.05em;
}

/* CTA Section */
.page-app-download-ios-guide__cta-section {
    background: linear-gradient(45deg, #0056b3, #007bff);
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
    border-radius: 10px;
    margin: 60px auto;
    max-width: 1000px;
}

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

.page-app-download-ios-guide__cta-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #ffc107; /* Secondary color for highlight */
}

.page-app-download-ios-guide__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-app-download-ios-guide__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-app-download-ios-guide__hero-title {
        font-size: 2.2em;
    }
    .page-app-download-ios-guide__hero-subtitle {
        font-size: 1.1em;
    }
    .page-app-download-ios-guide__section-title {
        font-size: 1.8em;
    }
    .page-app-download-ios-guide__step-title {
        font-size: 1.5em;
    }
    .page-app-download-ios-guide__cta-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-app-download-ios-guide__hero-section,
    .page-app-download-ios-guide__content-section,
    .page-app-download-ios-guide__guide-section,
    .page-app-download-ios-guide__troubleshooting-section,
    .page-app-download-ios-guide__cta-section {
        padding: 40px 0;
    }
    .page-app-download-ios-guide__grid-benefits {
        grid-template-columns: 1fr;
    }
    .page-app-download-ios-guide__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-app-download-ios-guide__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-app-download-ios-guide__cta-section {
        margin: 40px 20px;
    }
}

@media (max-width: 480px) {
    .page-app-download-ios-guide__hero-title {
        font-size: 1.8em;
    }
    .page-app-download-ios-guide__hero-subtitle {
        font-size: 1em;
    }
    .page-app-download-ios-guide__section-title {
        font-size: 1.6em;
    }
    .page-app-download-ios-guide__step-title {
        font-size: 1.3em;
    }
    .page-app-download-ios-guide__step-number {
        width: 40px;
        height: 40px;
        font-size: 1.5em;
    }
    .page-app-download-ios-guide__cta-title {
        font-size: 1.8em;
    }
    .page-app-download-ios-guide__button {
        width: 100%;
        max-width: 280px;
    }
}