/**
 * Single Service Offerings Styles
 */

/* Hero Section */
.so-hero {
    background: linear-gradient(90deg, #451494 0%, #3F18E2 100%), linear-gradient(0deg, #3F18E2 0%, #3F18E2 100%), url() lightgray 0% 0% / 33.88671875px 33.88671875px repeat;
    color: #fff;
    padding: 6rem 0;
}



.so-hero__subhead {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.9;
}

.so-hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    line-height: 1.1;
    color: #fff;
}

.so-hero__description {
    font-size: 1.25rem;
    margin: 0 0 2.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

.so-hero__actions {
    gap: 1rem;
}


.hero-links .btn.cta-submit:hover {
    color: #8B74EF !important;
    background-color: rgba(255, 255, 255, 0.85) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-extra-link.more-posts {
    color: #fff !important;
    text-decoration: none;
    margin-left: 24px;
    display: inline-flex;
    align-items: center;
}

.hero-extra-link.more-posts::after {
    /* Ensure icon color matches text if not automatic */
    color: #fff;
}

.hero-extra-link.more-posts:hover {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none;
}

/* Main Content */
.so-section {
    padding: 3.5rem 0;
}


.so-grid-2 {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 4rem;
    align-items: start;
}

.so-section__title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.so-content {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4a4a4a;
}

/* Benefits */
.so-benefits-grid {
    display: grid;
}

.so-benefit-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
}

.so-benefit-item p {
    margin: 0;
    color: #4a4a4a;
}



.so-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.so-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.so-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.so-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.so-card__image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.so-card__content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.so-card__title {
    font-size: 1.25rem;
    margin: 0 0 1rem;
}

.so-card__title a {
    text-decoration: none;
    color: #1a1a1a;
}

.so-card__excerpt {
    font-size: 0.9375rem;
    color: #666;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.so-card__link {
    color: var(--service-industry, #3F18E2);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Footer CTA */
.so-footer-cta {
    background-color: #f0f4f8;
    padding: 4rem 1.5rem;
    text-align: center;
    border-radius: 8px;
    margin: 0 auto;
    max-width: 1000px;
}

.so-footer-cta__title {
    font-size: 2rem;
    color: var(--service-industry, #3F18E2);
    margin-bottom: 1rem;
}

.so-footer-cta__text {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.125rem;
    color: #4a4a4a;
}

/* Responsive */
@media (max-width: 768px) {
    .so-hero__title {
        font-size: 2.5rem;
    }

    .so-grid-2,
    .so-grid-3 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .so-hero__actions {
        flex-direction: column;
    }

    .so-btn {
        width: 100%;
    }
}