/* =========================================
   VOCATIONAL REHABILITATION STYLES 
   (Auto-Accident Aesthetic: Clean, Gold/Black/White)
   ========================================= */

.rehab-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 80px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #334155;
    line-height: 1.6;
}

/* --- INTRO TEXT --- */
.rehab-intro-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
    margin-bottom: 25px;
    color: #334155;
}

.rehab-featured-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
}

/* --- SECTIONS --- */

.rehab-subtitle {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: 2rem;
    color: #111111;
    text-transform: uppercase;
    margin-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 15px;
}

/* --- SERVICES GRID --- */
.rehab-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 50px;
}

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

.rehab-service-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #c5a059;
    padding: 25px;
    border-radius: 4px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rehab-service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.rehab-service-card h4 {
    color: #111;
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.rehab-service-card p {
    margin: 0;
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}


/* --- CLOSING HIGHLIGHT BOX --- */
.rehab-highlight-box {
    background: #f8fafc;
    border-top: 4px solid #c5a059;
    padding: 30px;
    margin: 40px 0;
    border-radius: 4px;
}

.rehab-highlight-box h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    color: #111;
    margin-top: 0;
    margin-bottom: 15px;
}

.rehab-highlight-box p {
    font-size: 1.05rem;
    margin-bottom: 15px;
    color: #334155;
    line-height: 1.7;
}