.about-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://source.unsplash.com/random/1600x600/?photography') no-repeat center center/cover;
    color: #fff;
    padding: 120px 0;
    margin-bottom: 2rem;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.text-accent {
    color: #f8c822;
}

.mission-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.mission-card:hover {
    transform: translateY(-5px);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background-color: #f8c822;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
}

.icon-circle i {
    font-size: 2rem;
    color: #333;
}

.mission-card h3 {
    margin-bottom: 1rem;
}

.team-member {
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 3px solid #f8c822;
}

.team-member h4 {
    margin: 1rem 0 0.25rem;
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 32px;
    height: 32px;
    background-color: #f8c822;
    border-radius: 50%;
    color: #333;
    line-height: 32px;
    margin: 0 5px;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: #fff;
    color: #f8c822;
}

.cta-section {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://source.unsplash.com/random/1600x400/?camera') no-repeat center center/cover;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
    }

    .icon-circle i {
        font-size: 1.5rem;
    }
}