
/* Section Title */
.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #c62828;
    position: relative;
}
.section-title::after {
    content: "";
    width: 70px;
    height: 4px;
    background: #c62828;
    display: block;
    margin: 10px auto 0;
    border-radius: 3px;
}

/* Case Study Cards */
.case-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 6px solid #c62828;
    height: 100%;
}
.case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}
.case-card h5 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}
.case-card p {
    font-size: 15px;
    color: #555;
}
.case-card .result {
    margin-top: 15px;
    font-weight: 600;
    color: #2e7d32;
}

/* Testimonials */
.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    text-align: center;
}
.testimonial-card p {
    font-style: italic;
    color: #444;
}
.testimonial-card h6 {
    margin-top: 15px;
    font-weight: 600;
    color: #c62828;
}
