/* o-nas/style.css */
.about-hero {
    background: linear-gradient(rgba(255, 107, 107, 0.8), rgba(78, 205, 196, 0.8)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 90px;
    padding: 20px 0;
}

.about-hero h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.4rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.about-content {
    padding: 80px 0;
    background: var(--light-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.divider {
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    margin: 20px 0;
}

.lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-history ul {
    list-style: none;
    margin: 25px 0;
}

.about-history li {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    font-size: 1.1rem;
}

.about-history li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--secondary-color);
    font-size: 1.3em;
}

.mission-statement {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.mission-statement h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.about-images {
    position: relative;
}

.main-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    background: var(--primary-color);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    margin-top: 10px;
}

.team-section {
    padding: 80px 0;
    background: white;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    text-align: center;
    padding: 20px;
    background: var(--light-color);
    border-radius: 15px;
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid var(--primary-color);
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-images {
        order: -1;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 300px;
    }
    
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .team-member img {
        width: 150px;
        height: 150px;
    }
}