/* Hero Practice Area */
.hero-practice-area {
    color: white;
    text-align: center;
    position: relative;
}

.hero-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Approach Section */
.approach-content {
    padding: 30px;
}

.approach-content .section-title span {
    color: #D89D55;
}

/* Differential Cards */
.differential-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.differential-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    font-size: 2.5rem;
    color: #D89D55;
    margin-bottom: 20px;
}

.differential-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Pregnancy Care */
.pregnancy-content {
    padding-right: 30px;
}

/* CTA Section */
.practice-cta {
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    background: white;
    color: #D89D55;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);


}

/* Doctor Quote Section */
.doctor-quote-section {
    background-color: #f9f5f0;
    position: relative;
}

.doctor-photo {
    max-width: 250px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quote-content {
    padding-left: 30px;
}

.doctor-quote {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #3d3d3d;
    font-weight: 500;
    font-style: italic;
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
}

.doctor-quote:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: #D89D55;
}

.doctor-signature h5 {
    font-size: 1.2rem;
    color: #D89D55;
    margin-bottom: 5px;
}

.doctor-signature p {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
}

@media (max-width: 991px) {
    .doctor-quote {
        font-size: 1.3rem;
        margin-top: 30px;
    }

    .doctor-photo-wrapper {
        margin-bottom: 30px;
    }
}