/* ================================================
   DDS Dental Website - Why Choose Us Section
   ================================================
   Features section with doctor profile
   ================================================ */

.why-us-section {
    background-color: var(--bg-white);
    padding: var(--section-padding);
}

.why-us-header {
    margin-bottom: 60px;
}

.why-us-header h2 {
    color: var(--color-gravel);
}

.why-us-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.doctor-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.doctor-info {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: var(--border-radius);
}

.doctor-info h3 {
    margin-bottom: 15px;
    color: var(--color-gravel);
}

.doctor-info p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.features-list {
    margin-bottom: 25px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.features-list li i {
    color: var(--color-mid-blue);
}

/* ================================================
   RESPONSIVE STYLES
   ================================================ */

/* Tablet */
@media (max-width: 1024px) {
    .why-us-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .why-us-header,
    .doctor-info {
        text-align: center;
    }
}
