
        :root {
            --sand: #f5e3b8;
            --coral: #f9a397;
            --rose: #de7482;
            --mauve: #845a7e;
            --indigo: #41416b;
            --sand-light: #faf4e6;
            --indigo-dark: #2d2d4a;
            --white: #ffffff;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'DM Sans', sans-serif;
            color: var(--indigo);
            background: var(--sand-light);
            overflow-x: hidden;
            line-height: 1.6;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            line-height: 1.2;
        }

        /* Urgency Banner */
        .urgency-banner {
            background: linear-gradient(135deg, var(--rose), var(--coral));
            color: white;
            padding: 0.75rem 2rem;
            text-align: center;
            font-size: 0.9rem;
            font-weight: 500;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1001;
        }
        .urgency-banner a { color: white; text-decoration: underline; font-weight: 600; margin-left: 0.5rem; }

        /* Navbar */
        .navbar {
            position: fixed;
            top: 47px;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1rem 4%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 4px 30px rgba(65, 65, 107, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .navbar.scrolled { top: 0; }
        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            color: var(--indigo);
        }
        .logo-icon { width: 50px; height: auto; }
        .logo-icon img { width: 100%; height: auto; display: block; }
        .logo-text { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; }
        .logo-tagline { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.15em; opacity: 0.8; }
        .nav-links { display: flex; gap: 2.5rem; list-style: none; }
        .nav-links a {
            text-decoration: none;
            color: var(--indigo);
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-links a:hover, .nav-links a.active { color: var(--rose); }
        .mobile-cta { display: none; }
        .nav-cta {
            background: linear-gradient(135deg, var(--coral), var(--rose));
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(222, 116, 130, 0.4); }
        .menu-toggle { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 1001; }
        .menu-toggle span { width: 28px; height: 2px; background: var(--indigo); transition: all 0.3s; }

        /* Page Header */
        .page-header {
            padding: 180px 4% 80px;
            background: linear-gradient(135deg, var(--indigo) 0%, var(--mauve) 100%);
            color: white;
            text-align: center;
        }
        .page-header h1 { font-size: 3.5rem; margin-bottom: 1rem; }
        .page-header p { font-size: 1.2rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }

        /* Story Section */
        .story-section {
            padding: 100px 4%;
            background: white;
        }
        .story-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            max-width: 1200px;
            margin: 0 auto;
            align-items: center;
        }
        .story-image {
            position: relative;
        }
        .story-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(65, 65, 107, 0.2);
        }
        .story-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: linear-gradient(135deg, var(--coral), var(--rose));
            color: white;
            padding: 1.5rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 15px 40px rgba(222, 116, 130, 0.4);
        }
        .story-badge .number { font-size: 2.5rem; font-weight: 700; font-family: 'Cormorant Garamond', serif; }
        .story-badge .text { font-size: 0.85rem; }
        .story-content h2 { font-size: 2.5rem; color: var(--indigo); margin-bottom: 1.5rem; }
        .story-content p { color: var(--mauve); margin-bottom: 1.5rem; line-height: 1.8; }
        .story-signature {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(65, 65, 107, 0.1);
        }
        .signature-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }
        .signature-info h4 { font-size: 1.1rem; color: var(--indigo); }
        .signature-info p { font-size: 0.85rem; color: var(--mauve); }

        /* Stats Section */
        .stats-section {
            padding: 80px 4%;
            background: var(--sand);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }
        .stat-item h3 {
            font-size: 3rem;
            color: var(--indigo);
            margin-bottom: 0.5rem;
        }
        .stat-item p { color: var(--mauve); font-size: 0.95rem; }

        /* Values Section */
        .values-section { padding: 100px 4%; }
        .section-header { text-align: center; margin-bottom: 4rem; }
        .section-header h2 { font-size: 2.5rem; color: var(--indigo); margin-bottom: 1rem; }
        .section-header p { color: var(--mauve); max-width: 600px; margin: 0 auto; }
        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .value-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(65, 65, 107, 0.1);
            transition: transform 0.3s;
        }
        .value-card:hover { transform: translateY(-10px); }
        .value-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, var(--coral), var(--rose));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }
        .value-card h3 { font-size: 1.5rem; color: var(--indigo); margin-bottom: 1rem; }
        .value-card p { color: var(--mauve); line-height: 1.7; }

        /* Team Section */
        .team-section {
            padding: 100px 4%;
            background: white;
        }
        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .team-card {
            text-align: center;
        }
        .team-image {
            position: relative;
            margin-bottom: 1.5rem;
            overflow: hidden;
            border-radius: 20px;
        }
        .team-image img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.4s;
        }
        .team-card:hover .team-image img { transform: scale(1.1); }
        .team-card h3 { font-size: 1.25rem; color: var(--indigo); margin-bottom: 0.25rem; }
        .team-card .role { color: var(--coral); font-size: 0.9rem; font-weight: 500; margin-bottom: 0.75rem; }
        .team-card p { color: var(--mauve); font-size: 0.85rem; line-height: 1.6; }

        /* Certifications Section */
        .certifications-section {
            padding: 80px 4%;
            background: var(--indigo);
            color: white;
            text-align: center;
        }
        .certifications-section h2 { font-size: 2rem; margin-bottom: 3rem; }
        .certifications-grid {
            display: flex;
            justify-content: center;
            gap: 4rem;
            flex-wrap: wrap;
            max-width: 1000px;
            margin: 0 auto;
        }
        .certification-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }
        .certification-icon {
            width: 80px;
            height: 80px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .certification-item span { font-size: 0.9rem; opacity: 0.9; }

        /* CTA Section */
        .cta-section {
            padding: 100px 4%;
            background: linear-gradient(135deg, var(--mauve) 0%, var(--rose) 100%);
            text-align: center;
            color: white;
        }
        .cta-section h2 { font-size: 2.5rem; margin-bottom: 1rem; }
        .cta-section p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: white;
            color: var(--indigo);
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2); }

        /* Footer */
        .footer {
            background: var(--indigo-dark);
            color: white;
            padding: 60px 4% 30px;
        }
        .footer-container { max-width: 1400px; margin: 0 auto; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
        .footer-about .logo { color: white; margin-bottom: 1rem; }
        .footer-about p { opacity: 0.8; font-size: 0.9rem; line-height: 1.8; }
        .footer-social { display: flex; gap: 1rem; margin-top: 1.5rem; }
        .footer-social a {
            width: 40px; height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: white;
            transition: background 0.3s, transform 0.3s;
        }
        .footer-social a:hover { background: var(--coral); transform: translateY(-3px); }
        .footer-column h4 { font-size: 1.1rem; margin-bottom: 1.5rem; }
        .footer-column ul { list-style: none; }
        .footer-column ul li { margin-bottom: 0.75rem; }
        .footer-column ul a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
        .footer-column ul a:hover { color: var(--coral); }
        .footer-contact-item { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; font-size: 0.9rem; }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .footer-bottom p { opacity: 0.7; font-size: 0.85rem; }
        .footer-bottom-links { display: flex; gap: 2rem; }
        .footer-bottom-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.85rem; }

        /* WhatsApp Float */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 999;
            transition: transform 0.3s;
        }
        .whatsapp-float:hover { transform: scale(1.1); }
        .whatsapp-float svg { width: 30px; height: 30px; fill: white; }

        /* Animal Silhouette Overlays */
        .silhouette-overlay {
            position: absolute;
            pointer-events: none;
            z-index: 1;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }
        .silhouette-giraffe { background-image: url('../images/silhouettes/giraffe.webp'); width: 180px; height: 220px; opacity: 0.06; }
        .silhouette-lion { background-image: url('../images/silhouettes/lion.webp'); width: 160px; height: 120px; opacity: 0.07; }
        .silhouette-zebra { background-image: url('../images/silhouettes/zebra.webp'); width: 150px; height: 120px; opacity: 0.06; }
        .silhouette-rhino { background-image: url('../images/silhouettes/rhino.webp'); width: 160px; height: 100px; opacity: 0.06; }
        .silhouette-antelope { background-image: url('../images/silhouettes/antelope.webp'); width: 140px; height: 140px; opacity: 0.06; }
        .silhouette-wildebeest { background-image: url('../images/silhouettes/wilderbeast.webp'); width: 150px; height: 110px; opacity: 0.06; }
        .footprint-lion { background-image: url('../images/footprints/lion foot print pair.webp'); width: 80px; height: 100px; opacity: 0.08; }
        .footprint-elephant { background-image: url('../images/footprints/elephant foot print pair.webp'); width: 100px; height: 120px; opacity: 0.07; }
        .footprint-zebra { background-image: url('../images/footprints/zebra foot print pair.webp'); width: 70px; height: 90px; opacity: 0.08; }
        .footprint-rhino { background-image: url('../images/footprints/rhino foot print pair.webp'); width: 80px; height: 100px; opacity: 0.07; }
        .footprint-gorilla { background-image: url('../images/footprints/gorilla foot print pair.webp'); width: 70px; height: 90px; opacity: 0.08; }
        .footprint-buffalo { background-image: url('../images/footprints/buffalo.webp'); width: 70px; height: 80px; opacity: 0.08; }
        .rotate-15 { transform: rotate(15deg); }
        .rotate-30 { transform: rotate(30deg); }
        .rotate-45 { transform: rotate(45deg); }
        .rotate-neg15 { transform: rotate(-15deg); }
        .rotate-neg30 { transform: rotate(-30deg); }
        .rotate-neg45 { transform: rotate(-45deg); }
        .flip-x { transform: scaleX(-1); }

        /* Responsive */
        @media (max-width: 1024px) {
            .story-container { grid-template-columns: 1fr; }
            .values-grid { grid-template-columns: repeat(2, 1fr); }
            .team-grid { grid-template-columns: repeat(2, 1fr); }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .navbar {
                top: 65px;
                background: linear-gradient(180deg, rgba(65, 65, 107, 0.95) 0%, rgba(65, 65, 107, 0.8) 100%);
            }
            .navbar .logo { color: white; }
            .navbar.scrolled { top: 0; background: rgba(255, 255, 255, 0.95); }
            .navbar.scrolled .logo { color: var(--indigo); }
            .navbar.scrolled .menu-toggle span { background: var(--indigo); }
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 400px;
                height: 100vh;
                background: var(--indigo);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 2rem;
                transition: right 0.4s;
            }
            .nav-links.active { right: 0; }
            .nav-links a { color: white !important; font-size: 1.25rem; }
            .mobile-cta { display: block; margin-top: 1rem; }
            .nav-cta-mobile {
                display: inline-block;
                background: linear-gradient(135deg, var(--coral), var(--rose));
                color: white !important;
                padding: 1rem 2rem;
                border-radius: 50px;
                font-weight: 600;
                text-decoration: none;
            }
            .menu-toggle { display: flex; }
            .menu-toggle span { background: white; }
            .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
            .menu-toggle.active span:nth-child(2) { opacity: 0; }
            .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
            .nav-cta { display: none; }
            .logo-icon { width: 50px; }
            .logo-text { font-size: 1.25rem; }
            .logo-tagline { font-size: 0.55rem; }
            .page-header { padding: 160px 4% 60px; }
            .page-header h1 { font-size: 2.5rem; }
            .story-badge { position: relative; bottom: auto; right: auto; margin-top: 2rem; }
            .values-grid { grid-template-columns: 1fr; }
            .team-grid { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
            .certifications-grid { gap: 2rem; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .urgency-banner { font-size: 0.8rem; padding: 0.6rem 1rem; }
        }

      
