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

        body {
            font-family: 'Balsamiq Sans', cursive;
            color: #171a1f;
            overflow-x: hidden;
            background: white;
        }

        /* ===========================
           NAVIGATION - MOBILE FIRST
        =========================== */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 20px;
            background: white;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
            animation: slideDown 0.5s ease-out;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        nav.menu-open {
            transform: translateY(-100%);
            opacity: 0;
            pointer-events: none;
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            font-size: 14px;
            animation: fadeIn 0.8s ease-out;
            flex: 1;
        }

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

        .logo img {
            height: 45px;
            width: auto;
            max-width: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .logo:hover img {
            transform: scale(1.05);
        }

        .logo span {
            display: none;
        }

        .nav-links,
        .nav-actions {
            display: none;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: flex;
            flex-direction: column;
            cursor: pointer;
            padding: 8px;
            z-index: 1002;
            transition: transform 0.3s ease;
        }

        .mobile-menu-toggle:active {
            transform: scale(0.9);
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: #171A1F;
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
            background: white;
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
            background: white;
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.85);
            z-index: 1001;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(8px);
        }

        .mobile-menu.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: white;
            padding: 12px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
            z-index: 1003;
            transform: translateY(-100%);
            transition: transform 0.3s ease;
        }

        .mobile-menu.active .mobile-menu-header {
            transform: translateY(0);
        }

        .mobile-menu-header .logo img {
            height: 45px;
            width: auto;
        }

        .mobile-menu-content {
            background: white;
            width: 85%;
            max-width: 320px;
            height: 100vh;
            padding: 80px 30px 30px;
            transform: translateX(-100%);
            transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            overflow-y: auto;
        }

        .mobile-menu.active .mobile-menu-content {
            transform: translateX(0);
        }

        .mobile-menu-close {
            background: none;
            border: none;
            font-size: 32px;
            cursor: pointer;
            color: #171A1F;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .mobile-menu-close:active {
            transform: scale(0.9) rotate(90deg);
        }

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

        .mobile-nav-links li {
            margin: 0;
            opacity: 0;
            transform: translateX(-20px);
        }

        .mobile-menu.active .mobile-nav-links li {
            animation: slideInLeft 0.5s ease forwards;
        }

        .mobile-menu.active .mobile-nav-links li:nth-child(1) { animation-delay: 0.1s; }
        .mobile-menu.active .mobile-nav-links li:nth-child(2) { animation-delay: 0.15s; }
        .mobile-menu.active .mobile-nav-links li:nth-child(3) { animation-delay: 0.2s; }
        .mobile-menu.active .mobile-nav-links li:nth-child(4) { animation-delay: 0.25s; }
        .mobile-menu.active .mobile-nav-links li:nth-child(5) { animation-delay: 0.3s; }
        .mobile-menu.active .mobile-nav-links li:nth-child(6) { animation-delay: 0.35s; }

        @keyframes slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .mobile-nav-links a {
            text-decoration: none;
            color: #171A1F;
            font-size: 18px;
            font-weight: 500;
            display: block;
            padding: 15px 10px;
            border-bottom: 1px solid #E3E8EF;
            transition: all 0.3s ease;
        }

        .mobile-nav-links a:hover,
        .mobile-nav-links a:active {
            color: #5CC778;
            padding-left: 20px;
            background: rgba(92, 199, 120, 0.05);
        }

        .mobile-nav-actions {
            margin-top: 30px;
            opacity: 0;
            transform: translateY(20px);
        }

        .mobile-menu.active .mobile-nav-actions {
            animation: fadeInUp 0.5s ease 0.4s forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Buttons */
        .btn {
            padding: 14px 24px;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border: none;
            font-family: 'Balsamiq Sans', cursive;
            width: 100%;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn:active::before {
            width: 300px;
            height: 300px;
        }

        .btn-donate {
            background: #FF6B6B;
            color: white;
            margin-bottom: 10px;
        }

        .btn-donate:active {
            background: #ff5252;
            transform: scale(0.98);
        }

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

        .btn-whatsapp:active {
            background: #20ba5a;
            transform: scale(0.98);
        }

        /* Hero Section */
        .hero-section {
            margin-top: 70px;
            background: white;
            padding: 40px 20px;
            text-align: center;
            animation: fadeIn 0.8s ease-out;
        }

        .hero-title {
            font-size: 28px;
            line-height: 34px;
            font-weight: 700;
            color: #5CC778;
            margin-bottom: 16px;
            animation: slideInFromTop 0.8s ease-out;
        }

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

        .hero-subtitle {
            font-size: 15px;
            line-height: 22px;
            font-weight: 400;
            color: #565D6D;
            max-width: 100%;
            animation: fadeIn 1s ease-out 0.3s both;
        }

       /* Contact Container */
.contact-container {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Form Section */
.form-section {
    background: linear-gradient(135deg, rgba(93, 200, 121, 0.24) 0%, rgba(93, 200, 121, 0.15) 100%);
    padding: 30px 20px;
    border-radius: 20px;
    animation: slideInFromLeft 0.8s ease-out;
}

.form-title {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    color: #171A1F;
    margin-bottom: 24px;
    text-align: center;
}

.form-group {
    margin-bottom: 16px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #F4FBF6;
    border-radius: 12px;
    background: white;
    font-family: 'Balsamiq Sans', cursive;
    font-size: 15px;
    color: #171A1F;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #5CC778;
    box-shadow: 0 0 0 3px rgba(92, 199, 120, 0.1);
}

.form-input::placeholder {
    color: #9095A0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group-inline {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: #171A1F;
    padding-left: 4px;
    font-family: 'Balsamiq Sans', cursive;
}

textarea.form-input {
    min-height: 100px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    background: #5CC778;
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    border: none;
    font-family: 'Balsamiq Sans', cursive;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    margin-top: 8px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #4AB562;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(92, 199, 120, 0.3);
}

.btn-submit:active {
    background: #4AB562;
    transform: scale(0.98);
}

.success-message {
    display: none;
    background: #E8F8EC;
    color: #2D5F3C;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid #5CC778;
    font-weight: 600;
}

.success-message i {
    color: #5CC778;
    margin-right: 8px;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-title {
        font-size: 20px;
        line-height: 26px;
    }
}

/* Animation */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
        /* Info Section */
        .info-section {
            display: flex;
            flex-direction: column;
            gap: 30px;
            animation: slideInFromRight 0.8s ease-out;
        }

        @keyframes slideInFromRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .info-card {
            background: white;
        }

        .info-card-title {
            font-size: 22px;
            line-height: 28px;
            font-weight: 700;
            color: #171A1F;
            margin-bottom: 16px;
            text-align: center;
        }

        .btn-whatsapp-large {
            background: #5CC778;
            color: white;
            padding: 16px 32px;
            border-radius: 12px;
            border: none;
            font-family: 'Balsamiq Sans', cursive;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            width: 100%;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-whatsapp-large:active {
            background: #4AB562;
            transform: scale(0.98);
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 24px;
            padding: 20px;
            background: #F9F9F9;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .info-item:active {
            transform: scale(0.98);
            background: #F4FBF6;
        }

        .info-icon {
            width: 48px;
            height: 48px;
            background: rgba(92, 199, 120, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .info-item:hover .info-icon {
            background: #5CC778;
            transform: scale(1.1);
        }

        .info-icon i {
            font-size: 20px;
            color: #5CC778;
            transition: color 0.3s ease;
        }

        .info-item:hover .info-icon i {
            color: white;
        }

        .info-content h3 {
            font-size: 18px;
            line-height: 24px;
            font-weight: 700;
            color: #171A1F;
            margin-bottom: 8px;
        }

        .info-content p {
            font-size: 14px;
            line-height: 20px;
            color: #565D6D;
            font-weight: 400;
        }

        .info-content a {
            font-size: 16px;
            line-height: 24px;
            color: #5CC778;
            font-weight: 600;
            text-decoration: none;
            display: block;
            margin-bottom: 4px;
        }

        .info-content a:active {
            color: #4AB562;
        }

        /* Map Section */
        .map-section {
            padding: 40px 20px;
            background: white;
        }

        .map-title {
            font-size: 28px;
            line-height: 34px;
            font-weight: 700;
            color: #171A1F;
            text-align: center;
            margin-bottom: 30px;
        }

        .map-container {
            width: 100%;
            height: 350px;
            border-radius: 16px;
            overflow: hidden;
            background: #E6E8EC;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* Footer */
        footer {
            padding: 40px 20px;
            background: white;
            border-top: 2px solid #F4FBF6;
            display: flex;
            flex-direction: column;
            gap: 24px;
            text-align: center;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 16px;
            list-style: none;
        }

        .footer-links a {
            text-decoration: none;
            color: #565D6D;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #5CC778;
        }

        .social-links {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .social-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #F4FBF6;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #5CC778;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            font-size: 18px;
        }

        .social-icon:active {
            background: #5CC778;
            color: white;
            transform: scale(0.9) rotate(10deg);
        }

        /* Success Message */
        .success-message {
            display: none;
            background: #5CC778;
            color: white;
            padding: 16px;
            border-radius: 12px;
            text-align: center;
            margin-bottom: 20px;
            animation: slideDown 0.5s ease;
        }

        .success-message.show {
            display: block;
        }

        /* ===========================
           TABLET - 600px and up
        =========================== */
        @media (min-width: 600px) {
            nav {
                padding: 16px 40px;
            }

            .logo img {
                height: 50px;
            }

            .mobile-menu-header .logo img {
                height: 50px;
            }

            .hero-section {
                padding: 60px 40px;
                margin-top: 80px;
            }

            .hero-title {
                font-size: 42px;
                line-height: 48px;
            }

            .hero-subtitle {
                font-size: 16px;
                line-height: 24px;
                max-width: 700px;
                margin: 0 auto;
            }

            .contact-container {
                padding: 60px 40px;
                gap: 50px;
            }

            .form-section {
                padding: 40px 32px;
            }

            .form-title {
                font-size: 28px;
                line-height: 36px;
                text-align: left;
            }

            .form-row {
                grid-template-columns: 1fr 1fr;
            }

            .info-card-title {
                font-size: 24px;
                line-height: 32px;
                text-align: left;
            }

            .map-section {
                padding: 60px 40px;
            }

            .map-title {
                font-size: 36px;
                line-height: 44px;
            }

            .map-container {
                height: 400px;
            }

            footer {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                padding: 40px;
            }

            .footer-links {
                flex-direction: row;
                gap: 24px;
            }
        }

        /* ===========================
           TABLET LANDSCAPE - 900px and up
        =========================== */
        @media (min-width: 900px) {
            .hero-section {
                padding: 70px 60px;
            }

            .hero-title {
                font-size: 52px;
                line-height: 58px;
            }

            .hero-subtitle {
                font-size: 18px;
                line-height: 26px;
            }

            .contact-container {
                padding: 70px 60px;
                flex-direction: row;
                gap: 60px;
            }

            .form-section {
                flex: 1;
                padding: 48px 40px;
            }

            .info-section {
                flex: 1;
            }

            .map-section {
                padding: 70px 60px;
            }

            .map-title {
                font-size: 42px;
                line-height: 50px;
            }
        }

        /* ===========================
           DESKTOP - 1024px and up
        =========================== */
        @media (min-width: 1024px) {
            nav {
                padding: 16px 80px;
            }

            .logo img {
                height: 55px;
            }

            .logo span {
                display: inline;
                font-size: 14px;
            }

            .mobile-menu-toggle {
                display: none;
            }

            .nav-links {
                display: flex;
                gap: 32px;
                list-style: none;
            }

            .nav-links a {
                text-decoration: none;
                color: #171a1f;
                font-size: 14px;
                font-weight: 400;
                transition: all 0.3s ease;
                position: relative;
            }

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

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

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

            .nav-actions {
                display: flex;
                gap: 12px;
            }

            .nav-actions .btn {
                width: auto;
            }

            .btn:hover {
                transform: translateY(-2px);
                box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
            }

            .btn-donate:hover {
                background: #ff5252;
            }

            .btn-whatsapp:hover {
                background: #20ba5a;
            }

            .hero-section {
                padding: 80px 128px;
            }

            .hero-title {
                font-size: 60px;
                line-height: 72px;
            }

            .contact-container {
                padding: 80px 128px;
            }

            .form-title {
                font-size: 32px;
                line-height: 40px;
            }

            .btn-submit:hover {
                background: #4AB562;
                transform: translateY(-2px);
                box-shadow: 0 6px 20px rgba(92, 199, 120, 0.3);
            }

            .btn-whatsapp-large:hover {
                background: #4AB562;
                transform: translateY(-2px);
                box-shadow: 0 6px 20px rgba(92, 199, 120, 0.3);
            }

            .info-item:hover {
                transform: translateY(-4px);
                box-shadow: 0 8px 24px rgba(92, 199, 120, 0.15);
            }

            .map-section {
                padding: 80px 128px;
            }

            .map-title {
                font-size: 48px;
                line-height: 56px;
            }

            footer {
                padding: 40px 80px;
            }

            .social-icon:hover {
                background: #5CC778;
                color: white;
                transform: scale(1.15) rotate(10deg);
            }
        }

        /* ===========================
           LARGE DESKTOP - 1200px and up
        =========================== */
        @media (min-width: 1200px) {
            .contact-container {
                max-width: 1400px;
                margin: 0 auto;
            }
        }