/* Hero/Banner Section */
.about-hero {
    background: url('../images/about-hero.jpeg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 120px 20px;
    position: relative;
}

.about-hero::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 0;
}

.about-hero-text {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-text h2 {
    font-size: 3em;
    margin-bottom: 20px;
}

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

/* About Content Sections */
.about-content {
    width: 90%;
    max-width: 1000px;
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Feature cards for mission & vision */
.features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.feature {
    background: #fff;
    flex: 1 1 460px;
    display: flex;
    gap: 18px;
    padding: 20px;
    border-radius: 12px;
    align-items: flex-start;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex: 0 0 64px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.feature-icon svg { width: 28px; height: 28px; stroke: rgba(255,255,255,0.95); }

.feature-body h3 { color: var(--accent); font-size: 1.25rem; margin: 0 0 8px 0; }
.feature-body p { color: #444; margin: 0; }

/* Values */
.content-block h3 {
    color: #0a5;
    font-size: 1.6em;
    margin-bottom: 16px;
}

.values-grid {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.value-item {
    background: #fff;
    flex: 1 1 220px;
    display: flex;
    gap: 12px;
    padding: 14px;
    border-radius: 10px;
    align-items: flex-start;
    box-shadow: 0 6px 14px rgba(0,0,0,0.06);
}

.value-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(10,85,85,0.95), rgba(8,51,51,0.95));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.value-icon svg { width: 18px; height: 18px; stroke: rgba(255,255,255,0.95); }

.value-text { color: #444; font-size: 0.98rem; }

/* Responsive tweaks */
@media (max-width: 900px) {
    .feature { flex-direction: row; }
}

@media (max-width: 768px) {
    .features { flex-direction: column; }
    .feature { flex: 1 1 100%; }
    .values-grid { flex-direction: column; }
}

@media (max-width: 480px) {
    .feature-icon { width: 52px; height: 52px; }
    .feature-icon svg { width: 22px; height: 22px; }
    .value-icon { width: 36px; height: 36px; }
    .content-block h3 { font-size: 1.3rem; }
}

/* Team Section */
.team-section {
    background: #f9f9f9;
    padding: 50px 20px;
    text-align: center;
}

.team-section h2 {
    color: #0a5;
    font-size: 2.5em;
    margin-bottom: 40px;
}

.team-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.team-card {
    background: #fff;
    flex: 1 1 250px;
    max-width: 250px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-card img {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-card h4 {
    color: #083;
    margin-bottom: 5px;
}

.team-card p {
    color: #555;
    font-size: 0.95em;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .team-cards {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .about-hero-text h2 {
        font-size: 2.2em;
    }
    .about-hero-text p {
        font-size: 1em;
    }
}
