/* Services page */
.services-page {
    background: linear-gradient(180deg, #0f2447 0%, #1a3a6b 35%, #f8fafc 35%);
    padding-bottom: 4rem;
}

.services-intro {
    max-width: 720px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem 2.5rem;
    text-align: center;
    color: #f0f4f8;
}

.services-eyebrow {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
}

.services-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.services-title span {
    color: var(--color-accent);
}

.services-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(240, 244, 248, 0.85);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.service-card {
    background: white;
    border-radius: var(--radius);
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow);
    transition: transform 0.25s, box-shadow 0.25s;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(26, 58, 107, 0.15);
}

.service-card-inner {
    display: flex;
    gap: 1.25rem;
    padding: 1.75rem;
    align-items: flex-start;
}

.service-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 100%);
    border-radius: 12px;
    padding: 0.75rem;
}

.service-icon img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.service-body {
    flex: 1;
    min-width: 0;
}

.service-body h2 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 0.75rem;
    line-height: 1.35;
}

.service-body p {
    font-size: 0.95rem;
    color: var(--color-muted);
    line-height: 1.65;
    margin: 0 0 1.25rem;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}

.service-cta:hover {
    opacity: 0.92;
    transform: translateX(2px);
    color: white;
    text-decoration: none;
}

.service-cta-arrow {
    width: 18px;
    height: auto;
    filter: brightness(0) invert(1);
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .service-card-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .service-cta {
        width: 100%;
        justify-content: center;
    }
}
