/* ===== ABOUT PAGE STYLES ===== */
.about-section {
    padding: 120px 0 80px;
    background-color: #f8f9fa;
}

.section-banner {
    background-color: #1a1a1a;
    padding: 30px 0;
    margin-bottom: 60px;
}

.section-banner h2 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin: 0;
}

.who-we-are {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-content {
    padding-right: 20px;
}

.about-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.about-content h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.2rem;
    color: #007bff;
    margin-bottom: 2rem;
    font-weight: 600;
}

.about-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* ===== COMMITMENT SECTION ===== */
.commitment-section {
    padding: 80px 0;
    background-color: #fff;
}

.commitment-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.commitment-intro h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.commitment-intro p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.commitment-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.commitment-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.commitment-card:hover {
    transform: translateY(-10px);
}

.commitment-card i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1.5rem;
}

.commitment-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.commitment-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    .who-we-are {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content {
        padding-right: 0;
    }

    .section-banner h2 {
        font-size: 2rem;
    }

    .commitment-pillars {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .commitment-intro h3 {
        font-size: 1.75rem;
    }

    .commitment-card {
        padding: 30px 20px;
    }

    .commitment-card h4 {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 576px) {
    .about-section {
        padding: 100px 0 60px;
    }

    .section-banner {
        padding: 20px 0;
        margin-bottom: 40px;
    }

    .about-content h3 {
        font-size: 1.75rem;
    }

    .about-content h4 {
        font-size: 1.1rem;
    }
}
