.about-hero {
    background: linear-gradient(rgba(52, 73, 94, 0.8), rgba(44, 62, 80, 0.8)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="60" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 6rem 2rem 4rem;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-hero-content p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.our-story {
    padding: 5rem 2rem;
    background: #fff;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.story-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.story-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.our-mission {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.our-mission h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.mission-card p {
    color: #666;
    line-height: 1.6;
}

.our-team {
    padding: 5rem 2rem;
    background: #fff;
}

.our-team h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.team-member {
    text-align: center;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.team-member img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid #3498db;
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.team-member .position {
    font-weight: 600;
    color: #3498db;
    margin-bottom: 1rem;
}

.team-member p:last-child {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

.our-approach {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.approach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.approach-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.approach-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.7;
}

.approach-list {
    list-style: none;
    padding: 0;
}

.approach-list li {
    padding: 0.8rem 0;
    border-left: 3px solid #3498db;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    background: rgba(52, 152, 219, 0.05);
    font-size: 1rem;
    color: #555;
}

.approach-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.our-values {
    padding: 5rem 2rem;
    background: #fff;
}

.our-values h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: scale(1.05);
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.value-item p {
    opacity: 0.9;
    line-height: 1.5;
}

.why-choose-us {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.reason-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 4px solid #e74c3c;
    transition: all 0.3s ease;
}

.reason-card:nth-child(2) {
    border-top-color: #f39c12;
}

.reason-card:nth-child(3) {
    border-top-color: #27ae60;
}

.reason-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.reason-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.reason-card p {
    color: #666;
    line-height: 1.6;
}

.cta-about {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-about-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .about-hero-content p {
        font-size: 1.1rem;
    }

    .story-grid,
    .approach-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-grid,
    .mission-grid,
    .values-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .team-member img {
        width: 150px;
        height: 150px;
    }

    .our-story,
    .our-mission,
    .our-team,
    .our-approach,
    .our-values,
    .why-choose-us {
        padding: 3rem 1rem;
    }

    .about-hero {
        padding: 4rem 1rem 3rem;
    }
}