﻿

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.about-main {
    background-color: #F9F7F4;
}

.about-hero {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(41, 128, 185, 0.1) 100%);
    padding: 80px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    color: #433E38;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    padding: 30px 0;
}
.about-content-wrapper{
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.section-title {
    font-size: 2.2rem;
    color: #433E38;
    margin-bottom: 40px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.5rem;
    color: #A67C52;
    margin: 40px 0 20px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.mission-card,
.vision-card {
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.8rem;
    color: #433E38;
    margin-bottom: 20px;
}

.mission-card p,
.vision-card p {
    color: #555;
    line-height: 1.7;
}

.mission-card i,
.vision-card i {
    font-size: 3rem;
    color: #A67C52;
    margin-bottom: 20px;
    display: block;
}

.team-section {
    background-color: #f0f7ff;
    padding: 40px 0;
    margin: 30px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-img {
    height: 200px;
    background-color: #e8f4fc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A67C52;
    font-size: 4rem;
}

.member-info {
    padding: 25px;
    text-align: center;
}

.member-name {
    font-size: 1.3rem;
    color: #433E38;
    margin-bottom: 5px;
}

.member-role {
    color: #A67C52;
    font-weight: 500;
    margin-bottom: 15px;
}

.member-bio {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.6;
}

.values-section {
    padding: 30px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #A67C52;
}

.value-item i {
    font-size: 2.5rem;
    color: #A67C52;
    margin-bottom: 20px;
    display: block;
}

.value-item h4 {
    font-size: 1.3rem;
    color: #433E38;
    margin-bottom: 15px;
}

.value-item p {
    color: #555;
    line-height: 1.6;
}

.contact-cta {
    background: linear-gradient(135deg, #A67C52 0%, #8B7D6B 100%);
    color: white;
    padding: 30px 0;
    text-align: center;
    margin: 30px 0;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.contact-btn {
    display: inline-block;
    background-color: white;
    color: #A67C52;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.contact-btn:hover {
    background-color: #F9F7F4;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .about-hero {
        padding: 50px 0;
    }

    .about-hero h1 {
        font-size: 2.2rem;
    }

    .about-hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .mission-card,
    .vision-card {
        padding: 30px;
    }

    .contact-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 60px 0;
    }

    .about-hero h1 {
        font-size: 1.8rem;
    }

    .about-content {
        padding: 30px 0;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .team-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
}
