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;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 30px;
}

.service-card {
    background: #f8fbfc;
    border: 1px solid #e2ebee;
    border-radius: 10px;
    padding: 24px;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

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

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

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

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

.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-box {
    background: #f8fbfc;
    border: 1px solid #e2ebee;
    border-radius: 12px;
    padding: 36px 24px;
    margin-bottom: 40px;
}

.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;
}

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

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

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