body {
    color: #495057;
}

.masthead {
    position: relative;
}

.masthead::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(28, 52, 63, 0.35);
}

.masthead .container {
    position: relative;
    z-index: 2;
}

.site-heading h1 {
    font-weight: 700;
}

.site-heading .subheading {
    display: block;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-top: 12px;
}

.hero-buttons {
    margin-top: 28px;
}

.hero-buttons .btn {
    margin: 6px;
}

.post-preview {
    padding: 10px 0;
}

.post-preview .post-title {
    margin-bottom: 14px;
    color: #1f3c46;
}

.post-preview .post-subtitle {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 400;
}

.section-title {
    text-align: center;
}

.landing-text {
    font-size: 1.02rem;
    line-height: 1.9;
    color: #5f6b72;
    margin-bottom: 16px;
}

/* General grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 25px;
}

/* Basic cards for intro section */
.service-card {
    padding: 20px 24px;
    border-left: 4px solid #8fb7b3;
    background: #f8fbfc;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.service-card h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: #21424d;
}

.service-card p {
    font-size: 0.88rem;
    flex-grow: 1;
    margin-bottom: 16px;
    color: #5f6b72;
    line-height: 1.6;
}

.service-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: block;
    margin-bottom: 8px;
}

.service-fa-icon {
    color: #7aa6a1;
    font-size: 1.4rem;
    margin-right: 8px;
}

.section-button {
    margin-top: 24px;
}

/* Benefits */
.benefits-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 25px;
}

.benefits-list.two-col {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.benefit-item {
    padding: 20px 24px;
    border-left: 4px solid #8fb7b3;
    background: #f8fbfc;
    border-radius: 6px;
}

.benefit-item h4 {
    margin-bottom: 8px;
    color: #21424d;
    font-size: 1.05rem;
}

.benefit-item p {
    margin-bottom: 0;
    color: #5f6b72;
    line-height: 1.7;
}

/* CTA */
.cta-box {
    background: #f8fbfc;
    border: 1px solid #e2ebee;
    border-radius: 12px;
    padding: 36px 24px;
    margin-bottom: 40px;
}

/* Main buttons */
.btn-primary {
    background-color: #7aa6a1;
    border-color: #7aa6a1;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #6a9691;
    border-color: #6a9691;
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-color: #ffffff;
}

.form-check-label {
    font-size: 1rem;
    font-weight: 400;
    color: var(--bs-body-color);
}

/* Areas of Support */
.support-section {
    margin-top: 0;
    padding-top: 0;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    margin-top: 0;
}

.support-card-simple {
    position: relative;
    min-height: 270px;
    padding: 22px 28px;
    border: none;
    border-radius: 18px;
    background: #eef3f2;
    overflow: hidden;
    box-shadow: none;
}

.support-card-warm-simple {
    background: #f4efea;
}

.support-card-simple:hover {
    transform: none;
    box-shadow: none;
}

.support-card-content-simple {
    position: relative;
    z-index: 2;
    max-width: 62%;
}

.support-card-content-simple h4 {
    font-size: 1rem;
    line-height: 1.45;
    margin-bottom: 20px;
    color: #21424d;
    font-weight: 700;
}

.support-card-content-simple p {
    font-size: 0.92rem;
    color: #5f6b72;
    margin-bottom: 22px;
    line-height: 1.8;
}

.card-learn-more-simple {
    display: inline-flex;
    align-items: center;
    background-color: #8eb3ad;
    color: #ffffff !important;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    line-height: 1.4;
    transition: background-color 0.2s ease;
}

.card-learn-more-simple:hover {
    background-color: #789f99;
    color: #ffffff !important;
    text-decoration: none;
}

.support-card-image-simple {
    position: absolute;
    right: 20px;
    bottom: 14px;
    width: 50%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    z-index: 1;
    opacity: 0.9;
}

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

    .support-card-simple {
        min-height: 240px;
        padding: 20px 22px;
    }

    .support-card-content-simple {
        max-width: 68%;
    }

    .support-card-image-simple {
        width: 50%;
        max-width: 400px;
        right: 14px;
        bottom: 10px;
    }
}
/* Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .support-card-content-simple {
        max-width: 62%;
    }

    .support-card-image-simple {
        width: 50%;
        max-width: 400px;
    }
}

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

    .support-grid {
        grid-template-columns: 1fr;
    }

    .site-heading h1 {
        font-size: 2.2rem;
    }

    .site-heading .subheading {
        font-size: 1rem;
    }

    .support-section .section-title {
        font-size: 2.2rem;
    }

    .support-card-simple {
        min-height: 320px;
        padding: 24px 24px;
    }

    .support-card-content-simple {
        max-width: 68%;
    }

    .support-card-image-simple {
        width: 60%;
        max-width: 400px;
        right: 14px;
        bottom: 12px;
    }
}
