.treatment-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

/* Treatment Card */
.treatment-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.treatment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.treatment-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.treatment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.treatment-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ef5491 0%, #d9437e 100%);
    color: white;
    padding: 10px 15px;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
}

.treatment-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.treatment-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-know-more {
    background-color: #ef5491;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    align-self: flex-start;
}

.btn-know-more:hover {
    background-color: #d9437e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(239, 84, 145, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }

    .treatment-image {
        height: 180px;
    }
}