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

        :root {
            --primary-blue: #0056A3;
            --secondary-green: #2E7D32;
            --accent-orange: #F57C00;
            --background-light: #F9FAFB;
            --text-dark: #1F2937;
            --text-gray: #6B7280;
            --white: #FFFFFF;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--background-light);
        }

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

        /* Header & Navigation */
        .navbar {
            background: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-blue);
        }

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

        .nav-menu a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.3s;
        }

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

        .nav-cta {
            display: flex;
            gap: 1rem;
        }

        .donate-btn {
  background: linear-gradient(135deg, #2563eb, #1d4ed8); /* Blue gradient */
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 18px;
  border-radius: 9999px; /* Full round button */
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease-in-out;
  display: inline-block;
  letter-spacing: 0.5px;
  border: none;
}

.donate-btn:hover {
  transform: scale(1.07);
  box-shadow: 0 6px 15px rgba(37, 99, 235, 0.4);
  background: linear-gradient(135deg, #1e40af, #2563eb);
}

.donate-btn:active {
  transform: scale(0.96);
}

          .mobile-dropdown-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }
        
        .mobile-dropdown-menu.open {
            max-height: 300px;
        }
        
        .dropdown-toggle.active i {
            transform: rotate(180deg);
        }
        
        .dropdown-toggle i {
            transition: transform 0.3s ease;
        }
        
        .donate-btn {
            background-color: #2563eb;
            color: white;
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        .donate-btn:hover {
            background-color: #1d4ed8;
        }

        .mobile-nav-menu {
            max-height: 80vh;
            overflow-y: auto;
        }
        
        .dropdown-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .btn {
            padding: 0.75rem 1.5rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

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

        .btn-primary:hover {
            background: #E65100;
            transform: translateY(-2px);
        }

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

        .btn-outline:hover {
            background: var(--secondary-green);
            color: var(--white);
        }

               .dropdown {
            position: relative;
        }
        
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            z-index: 1000;
            display: none;
            min-width: 200px;
            padding: 0.5rem 0;
            margin: 0.125rem 0 0;
            font-size: 1rem;
            color: #374151;
            text-align: left;
            list-style: none;
            background-color: #fff;
            background-clip: padding-box;
            border: 1px solid rgba(0, 0, 0, 0.15);
            border-radius: 0.375rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }
        
        .dropdown:hover .dropdown-menu {
            display: block;
        }
        
        .dropdown-item {
            display: block;
            width: 100%;
            padding: 0.5rem 1rem;
            clear: both;
            font-weight: 400;
            color: #374151;
            text-align: inherit;
            text-decoration: none;
            white-space: nowrap;
            background-color: transparent;
            border: 0;
        }
        
        .dropdown-item:hover {
            background-color: #f3f4f6;
            color: #1e40af;
        }
        
        .dropdown-toggle::after {
            display: inline-block;
            margin-left: 0.255em;
            vertical-align: 0.255em;
            content: "";
            border-top: 0.3em solid;
            border-right: 0.3em solid transparent;
            border-bottom: 0;
            border-left: 0.3em solid transparent;
        }

.mobile-header {
  display: none;
}

@media (max-width: 768px) {
  .mobile-header {
    display: block;
    background-color: var(--primary-blue, #004aad);
    color: white;
    position: relative;
    z-index: 1000;
  }

  .mobile-nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
  }

  .logo {
    font-weight: bold;
    font-size: 1.1rem;
  }

  .menu-toggle {
    font-size: 1.5rem;
    cursor: pointer;
  }

  .mobile-nav-menu {
    display: none;
    background: white;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }

  .mobile-nav-menu.active {
    display: block;
    animation: slideDown 0.3s ease forwards;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .mobile-nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-nav-menu li {
    border-bottom: 1px solid #eee;
  }

  .mobile-nav-menu a {
    display: block;
    padding: 1rem;
    text-decoration: none;
    color: #333;
  }

  .mobile-nav-menu a:hover {
    background: #f5f5f5;
  }
}

        @media (min-width: 1024px) {
            .mobile-nav-cta,
            .mobile-nav-menu {
                display: none;
            }
        }

        @media (max-width: 1023px) {
            .desktop-nav {
                display: none;
            }
        }
        
        @media (min-width: 768px) and (max-width: 1023px) {
            .mobile-nav-cta {
                padding: 1rem 1.5rem;
            }
            
            .mobile-nav-cta .logo {
                font-size: 1.25rem;
            }
            
            .mobile-nav-cta .btn {
                padding: 0.75rem 1.5rem;
                font-size: 1rem;
            }
            
            .mobile-nav-menu {
                padding: 0.75rem 0;
            }
            
            .mobile-nav-menu a {
                font-size: 0.875rem;
            }
            
            .mobile-nav-menu .icon {
                width: 1.75rem;
                height: 1.75rem;
            }
            
            main {
                padding-bottom: 6rem;
                padding-top: 5rem;
            }
        }
        
        @media (max-width: 767px) {
            main {
                padding-bottom: 5rem;
                padding-top: 4rem;
            }
        }
        
        @media (min-width: 1024px) {
            main {
                padding-top: 0;
            }
        }
        .footer {
            background: var(--text-dark);
            color: var(--white);
            padding: 3rem 0 1rem;
        }

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

        .footer-section h3 {
            font-family: 'Playfair Display', serif;
            margin-bottom: 1rem;
            color: var(--accent-orange);
        }

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

        .footer-links a {
            color: #D1D5DB;
            text-decoration: none;
            transition: color 0.3s;
        }

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

        .newsletter {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .newsletter input {
            flex: 1;
            padding: 0.75rem;
            border: none;
            border-radius: 6px;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            color: var(--white);
            font-size: 1.5rem;
            transition: color 0.3s;
        }

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

        .footer-bottom {
            border-top: 1px solid #374151;
            padding-top: 1rem;
            text-align: center;
            color: #9CA3AF;
        }