/* =========================================
   NEW SLOGAN DESIGNS
   ========================================= */

/* Slogan 1: Philosophical Quote (After Hero) */
.philosophy-banner {
    background: #fdfdfd;
    padding: 60px 0;
    text-align: center;
    position: relative;
    border-bottom: 1px solid #eee;
}

.philosophy-banner::before {
    content: '\201C';
    /* Opening Quote */
    font-family: serif;
    font-size: 120px;
    color: rgba(90, 172, 78, 0.1);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.philosophy-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-content h2 {
    font-family: 'Playfair Display', serif;
    /* Elegant serif font */
    font-size: 32px;
    color: #2c3e50;
    font-weight: 500;
    font-style: italic;
    line-height: 1.4;
    margin: 0;
}

.philosophy-content h2 span {
    color: #5aac4e;
    /* Green highlight */
    font-weight: 700;
}

/* Slogan 2: Treatment Feature (Before Services) */
.feature-banner {
    background: linear-gradient(135deg, #5aac4e 0%, #4cae4c 100%);
    padding: 40px 0;
    text-align: center;
    color: white;
    margin-bottom: 30px;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(90, 172, 78, 0.2);
}

.feature-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.feature-banner-icon {
    font-size: 32px;
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-banner h2 {
    font-size: 24px;
    color: white;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .philosophy-content h2 {
        font-size: 24px;
        padding: 0 20px;
    }

    .feature-banner h2 {
        font-size: 18px;
        text-align: center;
    }

    .feature-banner-content {
        flex-direction: column;
    }
}