html {
    scroll-behavior: smooth;
}

.about-section {
    padding: 2rem 2rem 0.5rem 2rem;
    background: #fff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.mission-statement {
    margin-bottom: 2rem;
}

.mission-statement h2 {
    color: #2d6a4f;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.mission-statement p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-card {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: bold;
    color: #2d6a4f;
}

.stat-label {
    display: block;
    margin-top: 0.5rem;
    color: #666;
    font-size: 1rem;
}
.main-content {
    flex: 1;
    width: 100%;
}
/* Welcome Section */
.welcome-section {
    min-height: 50vh;
    background-image: url('../img/aboutbg2.jpg');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1.5rem 1rem 1.5rem;
    overflow: hidden;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.welcome-section h1 {
    position: relative;
    z-index: 2;
    color: white;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.2s ease-out;
}

/* Data Section */
.data-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 1.5rem;
    margin-top: 0;
}

.data-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.data-link {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: #2d6a4f;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Sections Spacing */
.app-section, .stats-section, .faq-section, #team-section {
    padding: 0.5rem 0;
}

#about-section {
    padding-top: 0.2rem;
}


.data-link:hover {
    background: #1b4332;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 106, 79, 0.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .welcome-section h1 {
        font-size: 2.5rem;
    }
    
    .data-section {
        padding: 1rem;
    }
    
    .data-container {
        padding: 2rem 1rem;
    }
}

/* Media Query for Mobile */
@media (max-width: 768px) {
    .welcome-section {
        min-height: 40vh;
        padding: 2rem 1rem;
    }
}

@media screen and (max-width: 480px) {
    .welcome-section h1 {
        font-size: 2rem;
    }
    
    .data-link {
        padding: 0.8rem 1.5rem;
    }
}
