.seo-content {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 4rem 0;
    border-top: 1px solid rgba(139, 38, 53, 0.4);
    border-bottom: 1px solid rgba(139, 38, 53, 0.4);
    position: relative;
}

.seo-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #8B2635 50%, transparent 100%);
}

.seo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.seo-header {
    text-align: center;
    margin-bottom: 3rem;
}

.seo-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    background: linear-gradient(135deg, #FFFFFF 0%, #8B2635 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.seo-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #B0B0B0;
}

.breadcrumb-separator {
    color: #8B2635;
    font-size: 0.7rem;
}

.seo-description {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8) 0%, rgba(20, 20, 20, 0.6) 100%);
    border: 2px solid rgba(114, 47, 55, 0.3);
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.seo-description::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(114, 47, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.seo-description p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #E0E0E0;
    margin-bottom: 1.75rem;
    position: relative;
    z-index: 1;
    text-align: justify;
}

.seo-description p:last-child {
    margin-bottom: 0;
}

.seo-description p::first-letter {
    font-size: 2.5rem;
    font-family: 'Cormorant Garamond', serif;
    color: #8B2635;
    float: left;
    line-height: 1;
    margin: 0.1rem 0.5rem 0 0;
}

.seo-description strong {
    color: #8B2635;
    font-weight: 600;
    font-family: 'Nunito Sans', sans-serif;
}

.seo-description em {
    color: #E6C794;
    font-style: normal;
    font-weight: 500;
}

.seo-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.highlight-item {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9) 0%, rgba(20, 20, 20, 0.8) 100%);
    border: 2px solid rgba(139, 38, 53, 0.4);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(114, 47, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.highlight-item:hover::before {
    left: 100%;
}

.highlight-item:hover {
    transform: translateY(-8px);
    border-color: #8B2635;
    box-shadow: 0 12px 35px rgba(114, 47, 55, 0.4);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #8B2635 0%, #E6C794 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.highlight-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #8B2635, #E6C794);
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(8px);
    z-index: -1;
}

.highlight-icon i {
    font-size: 2rem;
    color: #FFFFFF;
}

.highlight-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.highlight-item p {
    font-size: 0.95rem;
    color: #B0B0B0;
    line-height: 1.6;
}

@media (max-width: 968px) {
    .seo-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .seo-container {
        padding: 0 1.5rem;
    }
    
    .seo-header h1 {
        font-size: 1.8rem;
    }
    
    .seo-description {
        padding: 2rem 1.5rem;
    }
    
    .seo-description p {
        font-size: 1rem;
        text-align: left;
    }
}