body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Hero Section */
.about-hero {
    background: linear-gradient(rgba(50, 89, 46, 0.8), rgba(0, 123, 255, 0.8)),
                url('https://images.unsplash.com/photo-1579684453423-f84349ef60b0');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
}

/* Info Boxes */
.info-box {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Team Cards */
.team-card {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card img {
    height: 300px;
    object-fit: cover;
}
