.about-hero {
    background: linear-gradient(135deg, #4FBFA5, #00868A);
    color: white;
    padding: 4rem 1rem;
    text-align: center;
    width: 100%;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 3em;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.2em;
    opacity: 0.9;
}

.about-story {
    padding: 4rem 1rem;
    width: 100%;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content h2 {
    color: #00868A;
    font-size: 2.5em;
    margin-bottom: 2rem;
}

.story-content p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #555;
}

.story-image {
    background: #f8f9fa;
    border-radius: 12px;
    height: 335px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #4FBFA5;
}

.image-placeholder {
    color: #00868A;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.about-values {
    padding: 4rem 1rem;
    background: #f8f9fa;
    width: 100%;
}

.about-values h2 {
    text-align: center;
    color: #00868A;
    font-size: 2.5em;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card h3 {
    color: #00868A;
    font-size: 1.5em;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

.about-team {
    padding: 4rem 1rem;
    width: 100%;
}

.about-team h2 {
    text-align: center;
    color: #00868A;
    font-size: 2.5em;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-image {
    background: #f8f9fa;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border: 2px dashed #4FBFA5;
    color: #00868A;
    overflow: hidden;
    position: relative;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease; 
}

.team-image:hover img {
    transform: scale(1.1);
}

.team-card h3 {
    color: #00868A;
    font-size: 1.3em;
    margin-bottom: 0.5rem;
}

.team-card p {
    color: #666;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.team-card span {
    color: #888;
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-hero h1 {
        font-size: 2em;
    }
    
    .story-content h2,
    .about-values h2,
    .about-team h2 {
        font-size: 2em;
    }
    
    .team-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 3rem 1rem;
    }
    
    .about-story,
    .about-values,
    .about-team {
        padding: 2rem 1rem;
    }
    
    .value-card,
    .team-card {
        padding: 1.5rem;
    }
}