/* SEO & Content Enhancement Sections */

.seo-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.seo-section__header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.seo-section__header h2 {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.seo-section__header p {
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}

/* Blog Cards Grid */
.seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.seo-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.seo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.seo-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #e2e8f0;
}

.seo-card__content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.seo-card__content h3 {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.seo-card__content p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.seo-card__cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    color: #1e3a8a;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    gap: 0.5rem;
}

.seo-card__cta:hover {
    text-decoration: underline;
}

/* Services Section */
.services-section {
    padding: 4rem 0;
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: #ffffff;
    border-color: #1e3a8a;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.service-card__icon-wrap {
    width: 64px;
    height: 64px;
    background: #eff6ff;
    color: #1e3a8a;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
}

.service-card h3 {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.service-card__highlight {
    display: inline-block;
    background: #dbeafe;
    color: #1e40af;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .seo-section, .services-section {
        padding: 3rem 0;
    }
    .seo-section__header h2 {
        font-size: 1.75rem;
    }
}
