        :root {
            --header-height: 70px;
            --primary-50: #f0f9ff;
            --primary-100: #e0f2fe;
            --primary-200: #bae6fd;
            --primary-300: #7dd3fc;
            --primary-400: #38bdf8;
            --primary-500: #0ea5e9;
            --primary-600: #0284c7;
            --primary-700: #0369a1;
            --primary-800: #075985;
            --primary-900: #0c4a6e;
            --secondary-100: #d1fae5;
            --secondary-200: #a7f3d0;
            --secondary-300: #6ee7b7;
            --secondary-400: #34d399;
            --secondary-500: #10b981;
            --secondary-600: #059669;
            --secondary-700: #047857;
            --secondary-800: #065f46;
            --secondary-900: #064e3b;
            --accent-orange: #f97316;
            --accent-orange-light: #fed7aa;
            --accent-green: #22c55e;
            --accent-green-light: #dcfce7;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            scroll-behavior: smooth;
            background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 100%);
            padding-top: var(--header-height);
            color: #333;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .hero-pattern {
            background: linear-gradient(120deg, var(--primary-700) 0%, var(--primary-600) 100%);
            position: relative;
            overflow: hidden;
            padding: 100px 0;
            color: white;
        }

        .hero-pattern::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-0.895 2-2s-0.895-2-2-2-2 0.895-2 2 0.895 2 2 2zM60 91c1.105 0 2-0.895 2-2s-0.895-2-2-2-2 0.895-2 2 0.895 2 2 2zM35 41c1.105 0 2-0.895 2-2s-0.895-2-2-2-2 0.895-2 2 0.895 2 2 2zM12 60c1.105 0 2-0.895 2-2s-0.895-2-2-2-2 0.895-2 2 0.895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.2;
        }

        .water-drop {
            display: inline-block;
            animation: bounce 2s infinite, pulse 3s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        @keyframes pulse {
            0% { text-shadow: 0 0 0 rgba(255, 255, 255, 0.7); }
            70% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.7); }
            100% { text-shadow: 0 0 0 rgba(255, 255, 255, 0); }
        }

        /* Navigation Styles */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--primary-800);
            color: white;
            z-index: 1000;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: var(--header-height);
            padding: 0 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            font-weight: bold;
            font-size: 1.25rem;
        }

        .nav-links {
            display: flex;
            gap: 25px;
            align-items: center;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            position: relative;
            padding: 5px 0;
            transition: color 0.3s ease;
        }

        .nav-links a::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-orange);
            transition: width 0.3s ease;
        }

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

        .nav-links a:hover {
            color: var(--accent-orange-light);
        }

        .language-selector {
            display: flex;
            align-items: center;
            gap: 8px;
            color: white;
        }

        .language-selector select {
            background: var(--primary-700);
            color: white;
            border: 1px solid var(--primary-600);
            border-radius: 5px;
            padding: 5px 10px;
            font-size: 0.9rem;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        .mobile-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
            background-color: var(--primary-700);
        }

        .mobile-menu.active {
            max-height: 400px;
        }

        .mobile-menu-content {
            display: flex;
            flex-direction: column;
            padding: 15px 20px;
            gap: 12px;
        }

        .mobile-menu-content a {
            color: white;
            text-decoration: none;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Section Styles */
        section {
            padding: 80px 0;
        }

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

        .section-header h2 {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--primary-800);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent-orange);
            border-radius: 2px;
        }

        .section-header p {
            font-size: 1.2rem;
            color: #555;
            max-width: 700px;
            margin: 20px auto 0;
            font-weight: 500;
        }

        /* Hero Section */
        .hero-content {
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 25px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero-content p {
            font-size: 1.6rem;
            max-width: 900px;
            margin: 0 auto;
            opacity: 0.95;
            font-weight: 600;
        }

        .urgency-badge {
            display: inline-block;
            background: var(--accent-orange);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: bold;
            font-size: 0.9rem;
            margin-bottom: 20px;
            animation: pulse-badge 2s infinite;
        }

        @keyframes pulse-badge {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        /* About Section */
        .about-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }

        .about-image {
            flex: 1;
            min-width: 300px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            position: relative;
        }

        .about-image::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
        }

        .about-image img {
            width: 100%;
            /*height: 500px;*/
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .about-content {
            flex: 1;
            min-width: 300px;
        }

        .about-card {
            background: white;
            border-radius: 20px;
            padding: 35px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
            border-left: 5px solid var(--accent-orange);
        }

        .about-card h3 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-800);
            margin-bottom: 25px;
            padding-left: 15px;
            border-left: 4px solid var(--primary-600);
        }

        .about-card p {
            margin-bottom: 18px;
            display: flex;
            align-items: flex-start;
            font-size: 1.05rem;
            line-height: 1.7;
        }

        .about-card p i {
            color: var(--accent-orange);
            font-size: 0.9rem;
            margin-right: 12px;
            margin-top: 8px;
        }

        .progress-container {
            background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
            border-radius: 20px;
            padding: 35px;
            color: white;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            position: relative;
            overflow: hidden;
        }

        .progress-container::before {
            content: "";
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .progress-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .progress-header h3 {
            font-size: 1.8rem;
            font-weight: 700;
        }

        .progress-header span {
            font-size: 2rem;
            font-weight: 900;
            color: var(--accent-orange-light);
        }

        .progress-bar {
            height: 15px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 25px;
            position: relative;
            z-index: 2;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--accent-orange), var(--accent-green));
            border-radius: 8px;
            width: 0%;
            position: relative;
            animation: progress-glow 3s ease-in-out infinite;
        }

        @keyframes progress-glow {
            0%, 100% { box-shadow: 0 0 10px rgba(249, 115, 22, 0.5); }
            50% { box-shadow: 0 0 20px rgba(249, 115, 22, 0.8); }
        }

        .progress-fill::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .progress-numbers {
            display: flex;
            justify-content: space-between;
            text-align: center;
            margin-bottom: 25px;
            position: relative;
            z-index: 2;
        }

        .progress-numbers div span:first-child {
            font-size: 2.2rem;
            font-weight: 900;
            display: block;
            margin-bottom: 8px;
            color: var(--accent-orange-light);
        }

        .progress-numbers div span:last-child {
            font-size: 1rem;
            opacity: 0.9;
            font-weight: 600;
        }

        .progress-info {
            font-size: 0.95rem;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        .progress-info p {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
        }

        .progress-info i {
            margin-right: 12px;
            margin-top: 3px;
            color: var(--accent-orange-light);
        }

        /* Impact Statement */
        .impact-statement {
            background: var(--accent-green-light);
            border: 2px solid var(--accent-green);
            border-radius: 15px;
            padding: 25px;
            margin: 30px 0;
            text-align: center;
        }

        .impact-statement h4 {
            color: var(--accent-green);
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .impact-statement h4 i {
            margin-right: 10px;
            font-size: 1.6rem;
        }

        .impact-statement p {
            color: #065f46;
            font-size: 1.1rem;
            font-weight: 600;
            line-height: 1.6;
        }

        /* Features Section */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: white;
            border-radius: 20px;
            padding: 35px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border-top: 4px solid var(--accent-orange);
        }

        .feature-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--primary-100), var(--primary-200));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .feature-icon i {
            color: var(--primary-600);
            font-size: 2.2rem;
        }

        .feature-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary-800);
            margin-bottom: 15px;
        }

        .feature-card .feature-value {
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--accent-orange);
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }

        .feature-card p {
            color: #666;
            line-height: 1.6;
            font-weight: 500;
        }

        /* Problem Solution Section */
        .problem-solution {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .problem-box, .solution-box {
            border-radius: 25px;
            padding: 40px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .problem-box {
            background: linear-gradient(135deg, #fff5f5, #fef2f2);
            border: 2px solid #fee2e2;
        }

        .solution-box {
            background: linear-gradient(135deg, #f0fdf4, #f7fee7);
            border: 2px solid #dcfce7;
        }

        .box-label {
            position: absolute;
            top: 25px;
            left: -35px;
            background: var(--primary-600);
            color: white;
            padding: 10px 40px;
            transform: rotate(-45deg);
            font-weight: bold;
            font-size: 0.95rem;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .problem-box .box-label {
            background: #ef4444;
        }

        .solution-box .box-label {
            background: var(--accent-green);
        }

        .box-content h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 30px;
            padding-top: 15px;
        }

        .box-item {
            display: flex;
            align-items: flex-start;
            background: white;
            padding: 25px;
            border-radius: 15px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

        .box-item:hover {
            transform: translateX(5px);
        }

        .problem-box .box-item {
            border-left: 5px solid #ef4444;
        }

        .solution-box .box-item {
            border-left: 5px solid var(--accent-green);
        }

        .box-item i {
            font-size: 1.6rem;
            margin-right: 18px;
            margin-top: 5px;
        }

        .problem-box .box-item i {
            color: #ef4444;
        }

        .solution-box .box-item i {
            color: var(--accent-green);
        }

        .box-text h4 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .box-text p {
            color: #666;
            line-height: 1.6;
            font-weight: 500;
        }

        /* Testimonial Section */
        .testimonial-section {
            background: linear-gradient(135deg, var(--primary-50), white);
            padding: 60px 0;
        }

        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            border-top: 4px solid var(--accent-orange);
        }

        .testimonial-quote {
            font-size: 1.3rem;
            font-style: italic;
            color: var(--primary-700);
            margin-bottom: 25px;
            line-height: 1.7;
            position: relative;
        }

        .testimonial-quote::before {
            content: '"';
            font-size: 4rem;
            color: var(--accent-orange);
            position: absolute;
            top: -20px;
            left: -20px;
            font-family: serif;
        }

        .testimonial-author {
            font-weight: 600;
            color: var(--primary-800);
            font-size: 1.1rem;
        }

        /* FAQ Section */
        .faq-section {
            background: white;
            padding: 60px 0;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--primary-50);
            border-radius: 15px;
            margin-bottom: 20px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .faq-question {
            background: var(--primary-100);
            padding: 20px 25px;
            font-weight: 600;
            color: var(--primary-800);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease;
        }

        .faq-question:hover {
            background: var(--primary-200);
        }

        .faq-answer {
            padding: 20px 25px;
            color: #666;
            line-height: 1.6;
            border-top: 1px solid var(--primary-200);
        }

        /* Gallery Section */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }

        .gallery-item {
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            height: 280px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover::after {
            opacity: 1;
        }

        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 25px;
            color: white;
            z-index: 2;
            transform: translateY(15px);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .gallery-item:hover .gallery-caption {
            transform: translateY(0);
            opacity: 1;
        }

        .gallery-caption h3 {
            font-size: 1.2rem;
            font-weight: 600;
        }

        /* Donate Section */
        .donate-section {
            background: linear-gradient(135deg, var(--primary-700), var(--primary-900));
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
            padding: 100px 0;
        }

        .donate-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            animation: float 20s linear infinite;
        }

        .donate-content {
            position: relative;
            z-index: 10;
            max-width: 900px;
            margin: 0 auto;
        }

        .donate-content h2 {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 25px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .donate-content p {
            font-size: 1.4rem;
            opacity: 0.95;
            margin-bottom: 50px;
            font-weight: 600;
        }

        .donate-box {
            background: white;
            color: #333;
            border-radius: 25px;
            padding: 50px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            border-top: 5px solid var(--accent-orange);
        }

        .donate-box h3 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-800);
            margin-bottom: 25px;
        }

        .donate-box p {
            color: #555;
            margin-bottom: 35px;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .suggested-amounts {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 35px;
        }

        .amount-option {
            background: var(--primary-50);
            border: 2px solid var(--primary-200);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .amount-option:hover {
            background: var(--accent-orange-light);
            border-color: var(--accent-orange);
            transform: translateY(-3px);
        }

        .amount-value {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--primary-800);
            margin-bottom: 8px;
        }

        .amount-impact {
            font-size: 0.9rem;
            color: #666;
            font-weight: 600;
        }

        .bank-details {
            background: var(--primary-50);
            border: 2px solid var(--primary-200);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 35px;
            text-align: left;
        }

        .bank-details h4 {
            color: var(--primary-800);
            margin-bottom: 20px;
            font-size: 1.3rem;
            font-weight: 700;
            display: flex;
            align-items: center;
        }

        .bank-details h4 i {
            margin-right: 12px;
            color: var(--accent-orange);
            font-size: 1.4rem;
        }

        .bank-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
        }

        .bank-field {
            display: flex;
            flex-direction: column;
        }

        .bank-field label {
            font-weight: 600;
            color: var(--primary-700);
            margin-bottom: 8px;
            font-size: 0.95rem;
        }

        .bank-field span {
            background: white;
            padding: 12px;
            border-radius: 8px;
            border: 1px solid var(--primary-200);
            font-family: monospace;
            font-size: 0.95rem;
            font-weight: 600;
        }

        .donate-note {
            background: #fffbeb;
            border: 2px solid #fef3c7;
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 35px;
            text-align: left;
        }

        .donate-note i {
            color: #f59e0b;
            margin-right: 12px;
            font-size: 1.2rem;
        }

        .donate-note p {
            margin: 0;
            font-weight: 600;
        }

        .donate-buttons {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }

        .donate-btn {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 18px 35px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .whatsapp-btn {
            background: #25D366;
            color: white;
        }

        .whatsapp-btn:hover {
            background: #128C7E;
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
        }

        .call-btn {
            background: var(--accent-orange);
            color: white;
        }

        .call-btn:hover {
            background: #ea580c;
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #1f2937, #111827);
            color: white;
            padding: 80px 0 40px;
        }

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

        .footer-col h3 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
        }

        .footer-col h3 i {
            margin-right: 12px;
            color: var(--accent-orange);
        }

        .footer-about p {
            margin-bottom: 25px;
            opacity: 0.8;
            line-height: 1.7;
            font-weight: 500;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .footer-links a {
            color: #e5e7eb;
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .footer-links a:hover {
            color: var(--accent-orange);
            transform: translateX(8px);
        }

        .footer-links a i {
            margin-right: 12px;
            width: 20px;
            text-align: center;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .contact-item i {
            font-size: 1.3rem;
            color: var(--accent-orange);
            margin-right: 18px;
            margin-top: 5px;
        }

        .contact-info span {
            display: block;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .contact-info a {
            color: #e5e7eb;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-info a:hover {
            color: var(--accent-orange);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.95rem;
            opacity: 0.7;
        }

        .footer-bottom a {
            color: var(--accent-orange);
            text-decoration: none;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero-content h1 {
                font-size: 2.8rem;
            }

            .section-header h2 {
                font-size: 2.2rem;
            }

            .donate-content h2 {
                font-size: 2.4rem;
            }
        }

        @media (max-width: 768px) {
            .donate-buttons {
                flex-direction: column;
                align-items: center;
            }

            .donate-btn {
                width: 100%;
                justify-content: center;
            }

            .bank-info {
                grid-template-columns: 1fr;
            }

            .suggested-amounts {
                grid-template-columns: 1fr;
            }

            .problem-solution {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            section {
                padding: 60px 0;
            }

            .hero-content h1 {
                font-size: 2.2rem;
            }

            .hero-content p {
                font-size: 1.3rem;
            }

            .section-header h2 {
                font-size: 1.9rem;
            }

            .about-image {
                min-width: 100%;
            }

            .donate-box {
                padding: 30px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }
        }