/* === SEO Pages Styles === */

.seo-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    color: white;
}

.seo-hero .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

.seo-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.seo-hero .breadcrumb-item a:hover {
    color: white;
}

.seo-hero .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9);
}

.seo-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.seo-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.seo-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.6;
}

.seo-hero-icon {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.seo-hero-icon i {
    font-size: 5rem;
    color: white;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon-box i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e3a5f;
}

.feature-card p {
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Benefits Section */
.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-item i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.benefit-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #1e3a5f;
}

.benefit-item p {
    color: #64748b;
    margin: 0;
}

.benefit-stats {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stat-box {
    padding: 1.5rem;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e3a5f;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 0.5rem;
}

/* FAQ Section */
.seo-faq .accordion-button {
    font-weight: 600;
    color: #1e3a5f;
    padding: 1.25rem;
}

.seo-faq .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    color: white;
}

.seo-faq .accordion-body {
    padding: 1.25rem;
    color: #64748b;
    line-height: 1.7;
}

.seo-faq .accordion-item {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
}

/* CTA Section */
.seo-cta {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    color: white;
}

.seo-cta h2 {
    font-weight: 700;
}

.seo-cta .btn-outline-light {
    border-width: 2px;
}

.seo-cta .btn-outline-light:hover {
    background: white;
    color: #1e3a5f;
}

/* Related Links */
.related-link {
    text-decoration: none;
}

.related-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.related-card i {
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.related-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 0.5rem;
}

.related-card p {
    color: #64748b;
    margin: 0;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #1e3a5f;
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .seo-title {
        font-size: 2.2rem;
    }
    
    .seo-hero {
        padding: 120px 0 60px;
    }
}

@media (max-width: 576px) {
    .seo-title {
        font-size: 1.8rem;
    }
    
    .seo-subtitle {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}
