/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-blue: #0066CC;
    --light-blue: #4A90E2;
    --dark-blue: #003D7A;
    --white: #FFFFFF;
    --light-gray: #F5F7FA;
    --gray: #E0E4E8;
    --dark-gray: #6B7280;
    --black: #1F2937;
    --orange-accent: #FF6B35;
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--black);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap;
}

.logo {
    flex-shrink: 0;
}

.logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: var(--black);
    position: relative;
    padding: 8px 0;
    font-size: 15px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-blue);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.language-switcher {
    display: flex;
    gap: 5px;
    background-color: var(--light-gray);
    padding: 5px;
    border-radius: 8px;
}

.lang-btn {
    background: transparent;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
    color: var(--dark-gray);
}

.lang-btn:hover {
    background-color: var(--white);
}

.lang-btn.active {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-donate {
    background: linear-gradient(135deg, var(--orange-accent), #FF8C42);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: var(--transition);
}

.btn-donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--black);
    transition: var(--transition);
    border-radius: 2px;
}

/* ===== HERO SECTION - THIS IS THE SLIDER PART ===== */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Each slide - THESE BACKGROUNDS SHOW YOUR IMAGES */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* SLIDE 1 - CHANGE THIS IF YOUR IMAGE IS .png INSTEAD OF .jpg */
.hero-slide:nth-child(1) {
    background-image: linear-gradient(135deg, rgba(0, 102, 204, 0.7), rgba(74, 144, 226, 0.6)), 
                      url('../images/hero-slide-1.jpg');
    background-color: #4A90E2;
}

/* SLIDE 2 - CHANGE THIS IF YOUR IMAGE IS .png INSTEAD OF .jpg */
.hero-slide:nth-child(2) {
    background-image: linear-gradient(135deg, rgba(0, 61, 122, 0.7), rgba(0, 102, 204, 0.6)), 
                      url('../images/hero-slide-2.jpg');
    background-color: #0066CC;
}

/* SLIDE 3 - CHANGE THIS IF YOUR IMAGE IS .png INSTEAD OF .jpg */
.hero-slide:nth-child(3) {
    background-image: linear-gradient(135deg, rgba(74, 144, 226, 0.7), rgba(0, 102, 204, 0.6)), 
                      url('../images/hero-slide-3.jpg');
    background-color: #4A90E2;
}

/* Active slide is visible */
.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 700px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 35px;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s;
    animation-fill-mode: backwards;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s;
    animation-fill-mode: backwards;
}

.btn {
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    display: inline-block;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    background: var(--light-gray);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

/* Slider navigation buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

/* Slider dots at bottom */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--white);
    width: 35px;
    border-radius: 6px;
}

/* ===== WELCOME SECTION ===== */
.welcome {
    padding: var(--section-padding);
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
    margin: 0 auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--dark-gray);
    margin-top: 15px;
}

.welcome-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-gray);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.welcome-slogan {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--primary-blue);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
}

/* ===== ABOUT US SECTION ===== */
.about-us {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    font-size: 17px;
    line-height: 1.9;
    color: var(--black);
    text-align: justify;
    margin-bottom: 25px;
}

.about-text:last-child {
    margin-bottom: 0;
}

/* ===== ACTIVITIES SECTION ===== */
.activities {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.activity-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.activity-card:hover::before {
    transform: scaleX(1);
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.15);
}

.activity-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 36px;
    transition: var(--transition);
}

.activity-card:hover .activity-icon {
    transform: rotateY(360deg);
}

.activity-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 15px;
}

.activity-text {
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.7;
}

/* ===== STATS SECTION ===== */
.stats {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 300"><circle fill="rgba(255,255,255,0.05)" cx="100" cy="150" r="200"/><circle fill="rgba(255,255,255,0.05)" cx="1100" cy="150" r="180"/></svg>');
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-icon {
    font-size: 50px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 16px;
    font-weight: 300;
    opacity: 0.9;
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.95), rgba(255, 140, 66, 0.95)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23FF6B35" width="1200" height="400"/></svg>');
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 35px;
    opacity: 0.95;
}

.btn-cta {
    background: var(--white);
    color: var(--orange-accent);
    padding: 16px 40px;
    font-size: 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    background-color: var(--white);
    padding: 10px;
    border-radius: 12px;
}

.footer-description {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--gray);
    font-size: 14px;
}

.footer-contact i {
    color: var(--primary-blue);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: var(--dark-gray);
    font-size: 14px;
}

/* Footer Sponsors */
.footer-sponsors {
    padding: 50px 0 30px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.sponsors-title {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sponsors-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.sponsor-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.sponsor-item img {
    height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    opacity: 0.8;
    transition: var(--transition);
}

.sponsor-item:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.sponsor-name {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    text-align: center;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background-color: var(--white);
        flex-direction: column;
        padding: 30px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        overflow-y: auto;
        gap: 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 0;
        border-bottom: none;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 20px;
        font-size: 16px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .nav-right {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .btn-donate {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .activities-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .footer-sponsors {
        padding: 40px 0 25px;
        margin-top: 40px;
    }
    
    .sponsors-logos {
        gap: 40px;
    }
    
    .sponsor-item img {
        height: 45px;
        max-width: 130px;
    }
    
    .sponsor-name {
        font-size: 11px;
    }

    .navbar {
        padding: 12px 0;
    }
    
    .logo-img {
        width: 60px;
        height: 60px;
    }
    
    .language-switcher {
        gap: 4px;
        padding: 4px;
    }
    
    .lang-btn {
        padding: 8px 10px;
        font-size: 12px;
        white-space: nowrap;
    }
    
    .btn-donate {
        padding: 10px 18px;
        font-size: 12px;
        white-space: nowrap;
    }
    
    .hero {
        height: 500px;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        gap: 12px;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .title-underline {
        width: 60px;
        height: 3px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .welcome {
        padding: 50px 0;
    }
    
    .welcome-slogan {
        font-size: 24px;
        padding: 0 10px;
    }
    
    .welcome-text {
        font-size: 15px;
        padding: 0 10px;
    }
    
    .about-us {
        padding: 50px 0;
    }
    
    .about-text {
        font-size: 15px;
        line-height: 1.8;
        text-align: left;
        padding: 0 10px;
    }
    
    .activities {
        padding: 50px 0;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .activity-card {
        padding: 35px 25px;
    }
    
    .activity-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .activity-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .activity-text {
        font-size: 14px;
    }
    
    .stats {
        padding: 50px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .stat-icon {
        font-size: 42px;
        margin-bottom: 12px;
    }
    
    .stat-number {
        font-size: 40px;
        margin-bottom: 8px;
    }
    
    .stat-label {
        font-size: 15px;
        padding: 0 20px;
    }
    
    .cta {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 28px;
        margin-bottom: 15px;
        padding: 0 20px;
    }
    
    .cta-text {
        font-size: 16px;
        margin-bottom: 25px;
        padding: 0 20px;
    }
    
    .btn-cta {
        padding: 14px 35px;
        font-size: 16px;
    }
    
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-logo img {
        width: 90px;
        height: 90px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-contact {
        text-align: left;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .footer-sponsors {
        padding: 35px 0 20px;
        margin-top: 35px;
    }
    
    .sponsors-title {
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .sponsors-logos {
        gap: 30px;
    }
    
    .sponsor-item img {
        height: 40px;
        max-width: 120px;
    }
    
    .sponsor-name {
        font-size: 10px;
    }

    .navbar {
        padding: 10px 0;
    }
    
    .nav-wrapper {
        gap: 10px;
    }
    
    .logo-img {
        width: 50px;
        height: 50px;
    }
    
    .language-switcher {
        flex-direction: column;
        gap: 3px;
        padding: 3px;
    }
    
    .lang-btn {
        padding: 6px 8px;
        font-size: 11px;
    }
    
    .btn-donate {
        padding: 8px 14px;
        font-size: 11px;
    }
    
    .hero {
        height: 450px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 26px;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        gap: 10px;
    }
    
    .hero-buttons .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .prev-btn {
        left: 8px;
    }
    
    .next-btn {
        right: 8px;
    }
    
    .slider-dots {
        bottom: 15px;
        gap: 8px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .slider-dot.active {
        width: 28px;
    }
    
    .welcome {
        padding: 40px 0;
    }
    
    .welcome-slogan {
        font-size: 20px;
        padding: 0 15px;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .title-underline {
        width: 50px;
        height: 3px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .welcome-text {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .about-us {
        padding: 40px 0;
    }
    
    .about-text {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .activities {
        padding: 40px 0;
    }
    
    .activities-grid {
        gap: 20px;
    }
    
    .activity-card {
        padding: 30px 20px;
    }
    
    .activity-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
        margin-bottom: 18px;
    }
    
    .activity-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .activity-text {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .stats {
        padding: 40px 0;
    }
    
    .stats-grid {
        gap: 30px;
    }
    
    .stat-icon {
        font-size: 38px;
        margin-bottom: 10px;
    }
    
    .stat-number {
        font-size: 36px;
        margin-bottom: 6px;
    }
    
    .stat-label {
        font-size: 13px;
        padding: 0 15px;
    }
    
    .cta {
        padding: 50px 0;
    }
    
    .cta-title {
        font-size: 24px;
        margin-bottom: 12px;
        padding: 0 15px;
    }
    
    .cta-text {
        font-size: 14px;
        margin-bottom: 20px;
        padding: 0 15px;
    }
    
    .btn-cta {
        padding: 12px 30px;
        font-size: 15px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-logo img {
        width: 80px;
        height: 80px;
        margin: 0 auto 15px;
    }
    
    .footer-description {
        font-size: 13px;
        padding: 0 10px;
    }
    
    .social-links a {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .footer-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .footer-links a,
    .footer-contact li {
        font-size: 13px;
    }
    
    .footer-bottom {
        padding-top: 20px;
    }
    
    .footer-bottom p {
        font-size: 12px;
        line-height: 1.6;
    }
}