* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #faf3f5, #f5f5f7);
    min-height: 100vh;
}

/* Navigation Styles */
.nav-container {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
}

.logo span {
    color: #e9b7ce;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e9b7ce;
    transition: width 0.3s;
}

.nav-links a:hover {
    color: #e9b7ce;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Community Container */
.community-container {
    max-width: 1200px;
    margin: 100px auto 50px;
    padding: 2rem;
}

.community-header {
    text-align: center;
    margin-bottom: 4rem;
}

.community-title {
    font-size: 2.8rem;
    color: #2d2d2d;
    margin-bottom: 1.5rem;
}

.community-description {
    max-width: 800px;
    margin: 0 auto;
    color: #666;
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Community Sections */
.community-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.community-section {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 20px rgba(108, 99, 255, 0.1);
    transition: all 0.3s ease;
}

.community-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(108, 99, 255, 0.15);
}

.section-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #6c63ff;
}

.section-title {
    font-size: 1.8rem;
    color: #2d2d2d;
    margin-bottom: 1.2rem;
}

.section-description {
    color: #666;
    line-height: 1.7;
}

.impact-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 3rem;
    background: #f5f5ff;
    padding: 2rem;
    border-radius: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    color: #6c63ff;
    font-weight: bold;
}

.stat-label {
    color: #666;
    margin-top: 0.5rem;
}
.community-image{
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

/* Footer */
.footer-content {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    margin-top: 3rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

.social-links {
    margin: 1.5rem 0;
}

.social-icon {
    font-size: 1.8rem;
    margin: 0 1.2rem;
    text-decoration: none;
    transition: transform 0.3s ease;
    color: #6c63ff;
}

.social-icon:hover {
    transform: scale(1.15);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .community-sections {
        grid-template-columns: 1fr;
    }

    .impact-stats {
        flex-direction: column;
    }

    .stat-item {
        margin-bottom: 1.5rem;
    }
}

