.about-section {
    padding: 40px 0;
}

.about-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-header h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
}

.about-header .subtitle {
    font-size: 18px;
    color: #666;
}

.about-content {
    display: grid;
    gap: 40px;
}

.about-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.values-section {
    text-align: center;
    padding: 40px 0;
}

.values-section h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.team-section {
    text-align: center;
    padding: 40px 0;
}

.team-section h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.team-member h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.team-member p {
    font-size: 16px;
    color: #666;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-header h1 {
        font-size: 28px;
    }

    .about-header .subtitle {
        font-size: 16px;
    }

    .about-text h2 {
        font-size: 22px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 20px 0;
    }

    .about-header h1 {
        font-size: 24px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-member img {
        width: 150px;
        height: 150px;
    }
} 