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

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

        /* ===========================
           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: linear-gradient(135deg, #F4FBF6 0%, #E8F5EC 100%);
            padding: 40px 20px;
            border-radius: 0px 0px 24px 24px;
            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;
        }

        /* Counseling Section */
        .counseling-section {
            background: linear-gradient(135deg, #C8F0D5 0%, #E8F5EC 100%);
            padding: 50px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
        }

        .counseling-content {
            text-align: center;
            order: 2;
        }

        .counseling-title {
            font-size: 26px;
            line-height: 32px;
            font-weight: 700;
            color: #171A1F;
            margin-bottom: 16px;
        }

        .counseling-text {
            font-size: 15px;
            line-height: 22px;
            font-weight: 400;
            color: #565D6D;
        }

        .counseling-image {
            width: 100%;
            max-width: 300px;
            height: 300px;
            background: white;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
            order: 1;
            animation: zoomIn 0.8s ease-out;
        }

        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .counseling-image img {
            width: 80%;
            height: 80%;
            object-fit: contain;
        }

        /* Progress Section */
        .progress-section {
            padding: 50px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
            background: white;
        }

        .progress-image {
            width: 100%;
            max-width: 250px;
            height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: zoomIn 0.8s ease-out;
        }

        .progress-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .progress-content {
            text-align: center;
        }

        .progress-title {
            font-size: 26px;
            line-height: 32px;
            font-weight: 700;
            color: #171A1F;
            margin-bottom: 16px;
        }

        .progress-text {
            font-size: 15px;
            line-height: 22px;
            font-weight: 400;
            color: #565D6D;
        }

        /* Resources Section */
        .resources-section {
            background: linear-gradient(135deg, rgba(93, 200, 121, 0.24) 0%, #E8F5EC 100%);
            padding: 50px 20px;
            border-radius: 24px 0px 24px 0px;
        }

        .resources-title {
            font-size: 26px;
            line-height: 32px;
            font-weight: 700;
            color: #171A1F;
            margin-bottom: 16px;
            text-align: center;
        }

        .resources-subtitle {
            font-size: 15px;
            line-height: 22px;
            font-weight: 400;
            color: #565D6D;
            text-align: center;
            margin-bottom: 40px;
        }

        .resources-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            max-width: 1280px;
            margin: 0 auto;
        }

        .resource-card {
            background: white;
            border-radius: 16px;
            border: 2px solid #F4FBF6;
            box-shadow: 0px 4px 16px rgba(23, 26, 31, 0.08);
            padding: 28px 20px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            opacity: 0;
            transform: translateY(30px);
        }

        .resource-card.animate {
            animation: cardFadeIn 0.6s ease forwards;
        }

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

        .resource-card:active {
            transform: scale(0.98);
        }

        .resource-icon {
            width: 64px;
            height: 64px;
            background: rgba(93, 200, 121, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: all 0.3s ease;
        }

        .resource-card:hover .resource-icon {
            background: #5CC778;
            transform: rotateY(360deg);
        }

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

        .resource-card:hover .resource-icon i {
            color: white;
        }

        .resource-title {
            font-size: 18px;
            line-height: 24px;
            font-weight: 700;
            color: #171A1F;
            margin-bottom: 20px;
        }

        .btn-download {
            background: transparent;
            border: 2px solid #5CC778;
            color: #5CC778;
            padding: 12px 24px;
            border-radius: 24px;
            font-family: 'Balsamiq Sans', cursive;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            text-decoration: none;
            font-size: 14px;
        }

        .btn-download:active {
            background: #5CC778;
            color: white;
            transform: scale(0.95);
        }

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

        .faq-title {
            font-size: 26px;
            line-height: 32px;
            font-weight: 700;
            color: #171A1F;
            text-align: center;
            margin-bottom: 40px;
        }

        .faq-item {
            background: white;
            border: 2px solid #E6E8EC;
            border-radius: 12px;
            margin-bottom: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: #5CC778;
            box-shadow: 0px 4px 12px rgba(92, 199, 120, 0.15);
        }

        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 15px;
            color: #171A1F;
            transition: all 0.3s ease;
        }

        .faq-question:active {
            background-color: #F8F9FA;
        }

        .faq-question i {
            color: #5CC778;
            transition: transform 0.3s ease;
            font-size: 18px;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 20px 20px;
            color: #565D6D;
            font-size: 14px;
            line-height: 22px;
            display: none;
            animation: slideDown 0.3s ease;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        /* 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);
        }

        /* Scroll Reveal */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(30px);
        }

        .scroll-reveal.active {
            animation: scrollReveal 0.8s ease forwards;
        }

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

        /* ===========================
           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: 38px;
                line-height: 44px;
            }

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

            .counseling-section,
            .progress-section,
            .resources-section,
            .faq-section {
                padding: 60px 40px;
            }

            .counseling-title,
            .progress-title,
            .resources-title,
            .faq-title {
                font-size: 32px;
                line-height: 40px;
            }

            .counseling-text,
            .progress-text,
            .resources-subtitle {
                font-size: 16px;
                line-height: 24px;
            }

            .resources-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }

            .counseling-image {
                max-width: 350px;
                height: 350px;
            }

            .progress-image {
                max-width: 280px;
                height: 280px;
            }

            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) {
            .resources-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 28px;
            }

            .counseling-section,
            .progress-section {
                flex-direction: row;
                justify-content: space-between;
                padding: 70px 60px;
                gap: 60px;
            }

            .counseling-content,
            .progress-content {
                flex: 1;
                text-align: left;
            }

            .counseling-image {
                flex: 0 0 400px;
                height: 400px;
                order: 2;
            }

            .progress-image {
                flex: 0 0 300px;
                height: 300px;
            }

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

            .counseling-title,
            .progress-title,
            .resources-title,
            .faq-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;
            }

            .btn-download:hover {
                background: #5CC778;
                color: white;
                transform: translateY(-2px);
                box-shadow: 0 6px 20px rgba(92, 199, 120, 0.3);
            }

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

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

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

            .counseling-section,
            .progress-section,
            .resources-section,
            .faq-section {
                padding: 80px 128px;
            }

            .counseling-title,
            .progress-title,
            .resources-title,
            .faq-title {
                font-size: 48px;
                line-height: 54px;
            }

            .resource-card:hover {
                transform: translateY(-8px);
                box-shadow: 0px 12px 32px rgba(93, 200, 121, 0.2);
            }

            .faq-question:hover {
                background-color: #F8F9FA;
            }

            footer {
                padding: 40px 80px;
            }

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

        /* ===========================
           LARGE DESKTOP - 1280px and up
        =========================== */
        @media (min-width: 1280px) {
            .resources-grid {
                max-width: 1400px;
            }
        }