/* Dental Clinic About Page Styles */
:root {
    --dental-light: #e3f2fd;
    --dental-blue: #1976d2;
    --dental-dark: #0d47a1;
    --dental-dark-text: #1a237e;
    --dental-yellow: #fbbf24;
    --dental-green: #25d366;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #fff;
    color: #222;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* Hero Section */
.about-hero {
    padding: 4rem 0 2rem 0;
    background: linear-gradient(135deg, var(--dental-light) 0%, #fff 100%);
}

.about-hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--dental-dark-text);
    margin-bottom: 1rem;
}

.about-hero-desc {
    font-size: 1.25rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.mb-hero {
    margin-bottom: 2.5rem;
}

/* Mission Section */
.about-mission {
    padding: 3rem 0;
    background: #fff;
}

.about-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dental-dark-text);
    margin-bottom: 1.2rem;
}

.about-section-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-value-icon {
    font-size: 2.5rem;
    color: var(--dental-blue);
    margin-bottom: 0.5rem;
}

.about-value-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dental-dark-text);
}

.about-mission-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(25, 118, 210, 0.10);
}

/* Dentist Bio Section */
.about-bio {
    background: #f8f9fa;
    padding: 3rem 0;
}

.mb-bio {
    margin-bottom: 2.5rem;
}

.about-section-sub {
    color: #666;
    font-size: 1.1rem;
}

.about-bio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-bio-content {
    text-align: left;
}

.about-bio-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dental-dark-text);
    margin-bottom: 0.5rem;
}

.about-bio-role {
    font-size: 1.2rem;
    color: var(--dental-blue);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-bio-text p {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.about-bio-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-top: 2rem;
}

.about-bio-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.08);
    padding: 1.2rem 1rem;
}

.about-bio-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dental-dark-text);
    margin-bottom: 0.5rem;
}

.about-bio-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #666;
    font-size: 0.98rem;
}

.about-bio-img-wrap {
    display: flex;
    justify-content: center;
}

.about-bio-img-box {
    position: relative;
    display: inline-block;
}

.about-bio-img {
    width: 320px;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(25, 118, 210, 0.10);
}

.about-bio-exp {
    position: absolute;
    bottom: -1.2rem;
    right: -1.2rem;
    background: var(--dental-blue);
    color: #fff;
    padding: 1rem 1.2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.15);
    text-align: center;
}

.about-bio-exp-years {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
}

.about-bio-exp-label {
    font-size: 0.95rem;
    margin: 0;
}

/* Location Section */
.about-location {
    padding: 3rem 0;
    background: #fff;
}

.mb-location {
    margin-bottom: 2.5rem;
}

.about-location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-location-card {
    background: var(--dental-light);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.08);
}

.about-location-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dental-dark-text);
    margin-bottom: 1.2rem;
}

.about-location-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-location-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-location-icon {
    font-size: 1.5rem;
    color: var(--dental-blue);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.about-location-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dental-dark-text);
    margin-bottom: 0.2rem;
}

.about-location-card p {
    color: #555;
    font-size: 1rem;
    margin: 0 0 0.2rem 0;
}

.about-location-sub {
    color: #888;
    font-size: 0.95rem;
}

.about-location-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(25, 118, 210, 0.10);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-mission-grid,
    .about-bio-grid,
    .about-location-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-bio-img {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .about-hero-title {
        font-size: 2rem;
    }
    .about-section-title {
        font-size: 1.3rem;
    }
    .about-bio-name {
        font-size: 1.2rem;
    }
    .about-bio-exp {
        padding: 0.7rem 1rem;
        font-size: 1rem;
    }
    .about-bio-exp-years {
        font-size: 1.2rem;
    }
    .about-bio-cards {
        grid-template-columns: 1fr;
    }
}