.about-section {
    max-width: 900px;
    margin: 30px auto 30px auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}
.title {
    text-align: center;
    font-size: 3.1em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    background: linear-gradient(to right, #fbd118 35%, #097b3e 100%);
    -webkit-background-clip: text;
    background-clip: text;
   -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}
.tagline {
    text-align: center;
    font-size: 1.6em;
    color: #262626;
    margin-bottom: 30px;
    font-weight: 600;
}
.intro {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 50px;
    padding: 3% 15% 3% 15%;
    border-radius: 25px;
}
.section {
    background: #F7F7F7;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 30px;
    padding: 5% 5% 5% 5%;
    border-radius: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}
.section:hover {
    transform: translateY(-5px);
}
h2 {
    text-align: center;
    color: #0056b3;
    font-size: 2em;
    margin-bottom: 20px;
    position: relative;
}
h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: linear-gradient(to right, #fbd118, #097b3e);
    margin: 10px auto 30px auto;
    border-radius: 3px;
}
.mission-vision {
    padding: 0% 10% 0% 10%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: rgba(255,255,255,0.92);
    border-radius: 24px;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin: 10px 10% 30px 10%;
    margin-top: 60px;
}
.value-item {
    text-align: center;
    padding: 40px 25px;
    background: #F7F7F7;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    transition: all 0.35s;
}
.value-item:hover {
    background: linear-gradient(135deg, #fbd118, #097b3e);
    color: white;
    transform: scale(1.06);
}
.value-item h4 {
    font-size: 1.6rem;
    margin: 0px 0px 0px 15px;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.team-member {
    text-align: center;
}
.team-member-img {
    width: 100%;
    max-width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    margin-bottom: 25px;
}
.team-member h4 {
    font-size: 1.8rem;
    color: #0056b3;
    margin-bottom: 10px;
}
.team-member p {
    color: #000;
    margin: -10px 20% 0 20%;
}
@media (max-width: 768px) {
    h1 { font-size: 2.2em; }
    .title {font-size: 2.4em;}
    .tagline {font-size: 1.3em;}
    .mission-vision { grid-template-columns: 1fr; }
    section { padding: 70px 0; }
}