html {
    scroll-behavior: smooth;
}
/* Main Content */
.about-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

/* Introduction Section */
.intro-section {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.intro-section h2 {
    color: #1a2b4a;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.intro-section p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Mission & Vision Section */
.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.mission-card,
.vision-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.mission-card .icon,
.vision-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.mission-card h3,
.vision-card h3 {
    color: #1a2b4a;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.mission-card p,
.vision-card p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}
/* How We Work Section */
.how-we-work {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
    text-align: center;
}

.how-we-work h2 {
    color: #1a2b4a;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.how-we-work .section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.step-card {
    background: #f8f9fa;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.step-number {
    font-size: 2rem;
    font-weight: bold;
    color: #1a2b4a;
    background: #e0e7ff;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.step-card h3 {
    color: #1a2b4a;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 480px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}


/* Values Section */
.values-section {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.values-section h2 {
    color: #1a2b4a;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
}

.value-item .icon {
    background: linear-gradient(135deg, #1a2b4a 0%, #2d4a7c 100%);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.value-item h4 {
    color: #1a2b4a;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.value-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Managers Section */
.managers-section {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.managers-section h2 {
    color: #1a2b4a;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.managers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.manager-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: #f8f9fa;
    transition: transform 0.3s, box-shadow 0.3s;
}

.manager-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.manager-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 4px solid #1a2b4a;
}

.manager-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.manager-card h3 {
    color: #1a2b4a;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.manager-card .position {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.manager-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, #1a2b4a 0%, #2d4a7c 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}