body.site {
    --primary: #064fa8;
    --primary-dark: #051f63;
    --accent: #ff343b;
    --accent-dark: #c91621;
    --secondary: #f4f7fb;
    --soft-blue: #eaf3ff;
    --text-main: #10203d;
    --text-dark: #071a3f;
    --muted: #5f6b80;
}

.section-padding { padding: 72px 0; }
.text-left { text-align: left; }
.mt-4 { margin-top: 24px; }

.section-title {
    color: var(--text-dark);
    font-size: 34px;
    font-weight: 900;
    margin: 0 0 14px;
    line-height: 1.18;
}

.section-title span,
.about-text .section-title span,
.sd-heading span {
    color: var(--primary);
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 900;
    text-decoration: none;
    border: 0;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(255, 52, 59, 0.22);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: #ffffff;
    color: var(--primary-dark);
    box-shadow: inset 0 0 0 2px rgba(6, 79, 168, 0.16);
}

.btn-secondary:hover {
    color: var(--accent-dark);
    transform: translateY(-2px);
}

.care-hero {
    background: var(--secondary);
    padding: 64px 0 38px;
}

.care-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: 34px;
    align-items: center;
}

.care-hero__copy {
    max-width: 590px;
}

.eyebrow {
    color: var(--accent);
    font-size: 18px;
    font-weight: 900;
    margin: 0 0 14px;
}

.care-hero h1 {
    color: var(--primary-dark);
    font-size: 48px;
    line-height: 1.08;
    margin: 0 0 18px;
    font-weight: 900;
}

.hero-lead {
    font-size: 18px;
    line-height: 1.7;
    margin: 0 0 28px;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.care-hero__media {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(6, 79, 168, 0.12);
    box-shadow: 0 22px 46px rgba(5, 31, 99, 0.16);
}

.care-hero__media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.care-service-strip {
    background: #ffffff;
    padding: 28px 0;
}

.care-service-strip__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.care-icon-card {
    min-height: 132px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid rgba(6, 79, 168, 0.12);
    box-shadow: 0 12px 26px rgba(5, 31, 99, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 18px 12px;
    color: var(--text-dark);
}

.care-icon-card span {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--soft-blue);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
}

.care-icon-card strong {
    font-size: 14px;
    line-height: 1.25;
}

.care-icon-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 52, 59, 0.3);
}

.quick-services,
.sd-faq-section {
    background: var(--secondary);
}

.posts-header {
    text-align: center;
    margin-bottom: 30px;
}

.posts-header p {
    max-width: 650px;
    margin: 0 auto;
    color: var(--muted);
    line-height: 1.7;
}

.quick-provider-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.quick-provider-card,
.contact-card,
.sd-map-card,
.about-flex,
.testimonial-card,
.stat-card {
    border-radius: 8px;
}

.quick-provider-card {
    background: #ffffff;
    display: block;
    overflow: hidden;
    border: 1px solid rgba(6, 79, 168, 0.12);
    box-shadow: 0 10px 24px rgba(5, 31, 99, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.quick-provider-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(5, 31, 99, 0.12);
}

.quick-service-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: var(--soft-blue);
}

.quick-service-body {
    padding: 22px;
}

.quick-service-body h3 {
    margin: 0 0 8px;
    color: var(--primary-dark);
    font-size: 20px;
    font-weight: 900;
}

.quick-service-body p,
.quick-provider-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
    font-size: 14px;
}

.stats-section {
    background: var(--primary-dark);
    color: #ffffff;
}

.stats-section .section-title,
.stats-section .section-title span {
    color: #ffffff;
}

.stats-section p {
    color: #dce8ff;
    line-height: 1.7;
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 18px;
    align-items: stretch;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.stat-card strong {
    font-size: 36px;
    color: #ffffff;
}

.stat-card span {
    color: #dce8ff;
    line-height: 1.45;
}

.about-section {
    background: #ffffff;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--secondary);
    padding: 34px;
    border: 1px solid rgba(6, 79, 168, 0.1);
}

.about-image-wrapper { flex: 0.9; }
.about-main-img { width: 100%; border-radius: 8px; }
.about-text { flex: 1.1; }
.about-text p { color: var(--muted); line-height: 1.7; margin: 0 0 24px; }

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.feature-box {
    display: flex;
    gap: 14px;
    background: #ffffff;
    padding: 18px;
    border: 1px solid rgba(6, 79, 168, 0.12);
    border-radius: 8px;
}

.feature-box .icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.feature-box h4 {
    margin: 0 0 6px;
    color: var(--primary-dark);
    font-size: 14px;
    text-transform: uppercase;
}

.feature-box p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
}

.testimonials-section {
    background: var(--soft-blue);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.testimonial-card {
    background: #ffffff;
    padding: 26px;
    border: 1px solid rgba(6, 79, 168, 0.1);
    box-shadow: 0 10px 24px rgba(5, 31, 99, 0.07);
}

.testimonial-card p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.7;
}

.testimonial-card strong {
    display: block;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.testimonial-card span {
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
}

.contact-map-section {
    background: #ffffff;
}

.contact-map-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    gap: 24px;
    align-items: stretch;
}

.contact-card,
.sd-map-card {
    background: var(--secondary);
    border: 1px solid rgba(6, 79, 168, 0.12);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(5, 31, 99, 0.08);
}

.contact-card p,
.service-area-card p {
    color: var(--muted);
    line-height: 1.65;
}

.contact-card a {
    color: var(--primary);
    font-weight: 800;
}

.sd-subtitle {
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1.4px;
    font-size: 12px;
    display: block;
    margin-bottom: 8px;
}

.sd-heading {
    font-size: 30px;
    font-weight: 900;
    color: var(--text-dark);
    margin: 0 0 18px;
}

.sd-faq-list {
    border-top: 1px solid rgba(5, 31, 99, 0.12);
}

.sd-faq-item {
    border-bottom: 1px solid rgba(5, 31, 99, 0.12);
}

.sd-faq-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background: transparent;
    border: none;
    padding: 20px 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
}

.sd-faq-icon {
    color: var(--accent);
    font-size: 24px;
    font-weight: 700;
}

.sd-faq-content {
    display: none;
    padding-bottom: 20px;
}

.sd-faq-content p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .care-hero__inner,
    .contact-map-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .care-service-strip__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .quick-provider-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-image-wrapper { display: none; }
}

@media (max-width: 767px) {
    .section-padding { padding: 48px 0; }
    .care-hero { padding: 44px 0 28px; }
    .care-hero__inner { gap: 24px; }
    .care-hero h1 { font-size: 34px; }
    .hero-lead { font-size: 16px; }

    .care-service-strip__grid,
    .quick-provider-grid,
    .testimonial-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-flex,
    .contact-card,
    .sd-map-card {
        padding: 22px;
    }
}
