/* About Page Styles */

/* Hero Section */
.about-hero {
    text-align: center;
    padding: 4rem 2rem 2rem;
    background: var(--page-bg);
}

.about-hero h2 {
    font-family: var(--font-brand);
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.about-hero p {
    font-family: var(--font-ui);
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Main Content */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem;
	display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.about-section {
    margin-bottom: 3rem;
}

.about-section h3 {
    font-family: var(--font-brand);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    position: relative;
}

.about-section h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: var(--primary-accent);
}

.about-section p {
    font-family: var(--font-ui);
    font-weight: 500;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

/* Services List */
.services-list {
    list-style: none;
    padding: 0;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.services-list li {
    margin-bottom: 0.5rem;
}

.services-list strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.5rem;
}

/* Why Choose Us Grid */
.why-choose-us {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.reason {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.reason h4 {
    font-family: var(--font-brand);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--primary-accent);
    margin-bottom: 1rem;
}

.reason p {
    font-family: var(--font-ui);
    font-weight: 500;
    color: var(--text-primary);
    margin: 0;
}

.about-section .services-certifications {
    background: var(--white);
}

.about-section .services-certifications ul,
.about-section .services-certifications ul li {
    color: var(--text-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        padding: 3rem 1rem 1.5rem;
    }

    .about-hero h2 {
        font-size: 2rem;
    }

    .about-hero p {
        font-size: 1rem;
    }

    .about-content {
        padding: 2rem 1rem;
    }

    .about-section h3 {
        font-size: 1.5rem;
    }

    .about-section h3::after {
        width: 55px;
    }

    .why-choose-us {
        grid-template-columns: 1fr;
    }

    .reason {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero h2 {
        font-size: 1.8rem;
    }

    .about-section h3 {
        font-size: 1.3rem;
    }

    .about-section h3::after {
        width: 40px;
    }
}