:root {
            --color-forest: #1a5c3f;
            --color-forest-dark: #0f3d28;
            --color-gold: #d4a373;
            --color-gold-light: #e8c5a0;
            --color-cream: #faf7f2;
            --color-earth: #8b6f47;
            --color-sage: #9cb59d;
            --color-white: #ffffff;
            --color-charcoal: #2c2c2c;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: var(--color-charcoal);
            background: var(--color-cream);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(250, 247, 242, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(26, 92, 63, 0.1);
            animation: slideDown 0.8s ease-out;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logoImage{
            height: 60px;
            border-bottom-left-radius: 10px;
            border-top-left-radius: 10px;
            border-bottom-right-radius: 10px;
            border-top-right-radius: 10px;
        }
        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--color-charcoal);
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-gold);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--color-forest);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 24px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1001;
        }

        .hamburger-line {
            width: 100%;
            height: 3px;
            background: var(--color-forest);
            border-radius: 2px;
            transition: all 0.3s ease;
            transform-origin: center;
        }

        .hamburger.active .hamburger-line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active .hamburger-line:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active .hamburger-line:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 80px;
            left: 0;
            right: 0;
            background: rgba(250, 247, 242, 0.98);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(26, 92, 63, 0.1);
            padding: 2rem 5%;
            z-index: 999;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transform: translateY(-150%);
            transition: transform 0.3s ease;
        }

        .mobile-menu.active {
            transform: translateY(0);
        }

        .mobile-nav-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .mobile-nav-links a {
            text-decoration: none;
            color: var(--color-charcoal);
            font-weight: 600;
            font-size: 1.1rem;
            transition: color 0.3s ease;
            display: block;
            padding: 0.5rem 0;
        }

        .mobile-nav-links a:hover {
            color: var(--color-forest);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 8rem 5% 4rem;
            position: relative;
            overflow: hidden;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><circle cx="50" cy="50" r="40" fill="none" stroke="%239cb59d" stroke-width="1" opacity="0.1"/></svg>') repeat;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-forest) 100%);
            opacity: 0.08;
            clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
            z-index: 0;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text {
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-label {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: var(--color-forest);
            color: var(--color-white);
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 2rem;
            border-radius: 50px;
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 4.5rem;
            font-weight: 900;
            line-height: 1.1;
            color: var(--color-forest-dark);
            margin-bottom: 1.5rem;
            letter-spacing: -2px;
        }

        .hero-title .highlight {
            color: var(--color-gold);
            font-style: italic;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--color-earth);
            margin-bottom: 2rem;
            line-height: 1.8;
            font-weight: 400;
        }

        .hero-stats {
            display: flex;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .stat {
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--color-forest);
            line-height: 1;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--color-earth);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 0.5rem;
        }

        .hero-cta {
            display: flex;
            gap: 1.5rem;
            animation: fadeInUp 1s ease-out 0.9s both;
        }

        .btn {
            padding: 1rem 2.5rem;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            display: inline-block;
            cursor: pointer;
            border: 2px solid transparent;
        }

        .btn-primary {
            background: var(--color-forest);
            color: var(--color-white);
            box-shadow: 0 10px 30px rgba(26, 92, 63, 0.2);
        }

        .btn-primary:hover {
            background: var(--color-forest-dark);
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(26, 92, 63, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--color-forest);
            border-color: var(--color-forest);
        }

        .btn-secondary:hover {
            background: var(--color-forest);
            color: var(--color-white);
            transform: translateY(-2px);
        }

        .hero-visual {
            position: relative;
            animation: fadeInRight 1s ease-out 0.5s both;
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(60px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-image-container {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        }

        .hero-image-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(26, 92, 63, 0.1) 0%, transparent 100%);
            z-index: 1;
        }

        .hero-image {
            width: 100%;
            height: 600px;
            object-fit: cover;
            display: block;
        }

        .floating-badge {
            position: absolute;
            bottom: -30px;
            right: -30px;
            background: var(--color-white);
            padding: 2rem 2.5rem;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            z-index: 2;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        .badge-text {
            font-family: 'Playfair Display', serif;
            font-size: 1rem;
            color: var(--color-forest);
            font-weight: 600;
            margin-bottom: 0.3rem;
        }

        .badge-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--color-gold);
            line-height: 1;
        }

        /* Memorial Section */
        .memorial {
            padding: 8rem 5%;
            background: var(--color-white);
            position: relative;
        }

        .memorial-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 5rem;
            align-items: center;
        }

        .memorial-image img {
            width: 100%;
            max-width: 400px;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .memorial-text h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            color: var(--color-forest-dark);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .memorial-text p {
            font-size: 1.2rem;
            color: var(--color-earth);
            line-height: 1.8;
        }

        /* Vision Mission Section */
        .vision-mission {
            padding: 8rem 5%;
            background: var(--color-forest-dark);
        }

        .vision-mission-content {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-label {
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--color-gold);
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--color-white);
            margin-bottom: 3rem;
            text-align: center;
        }

        .vmg-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-bottom: 5rem;
        }

        .vmg-card {
            background: var(--color-white);
            padding: 3rem;
            border-radius: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
        }

        .vmg-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
        }

        .vmg-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--color-forest);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .vmg-card p {
            color: var(--color-earth);
            line-height: 1.8;
            font-size: 1.05rem;
        }

        /* Core Objectives */
        .core-objectives {
            margin-top: 5rem;
            background: var(--color-forest-dark);
        }

        .objectives-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }

        .objective-card {
            background: var(--color-white);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: all 0.3s ease;
        }

        .objective-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

        .objective-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--color-forest);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .objective-card p {
            color: var(--color-earth);
            line-height: 1.7;
        }
        
        /* Products Section */
        .products {
            padding: 8rem 5%;
            background: var(--color-white);
        }

        .products-header {
            max-width: 1400px;
            margin: 0 auto 5rem;
            text-align: center;
        }

        .products-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--color-forest-dark);
            margin-bottom: 1.5rem;
        }

        .products-subtitle {
            font-size: 1.2rem;
            color: var(--color-earth);
            max-width: 700px;
            margin: 0 auto;
        }

        .products-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
        }

        .product-card {
            background: var(--color-cream);
            border-radius: 25px;
            overflow: hidden;
            transition: all 0.4s ease;
            cursor: pointer;
            border: 2px solid transparent;
        }

        .product-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
            border-color: var(--color-gold);
        }

        .product-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .product-card:hover .product-image {
            transform: scale(1.05);
        }

        .product-info {
            padding: 2rem;
        }

        .product-category {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--color-gold);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.75rem;
        }

        .product-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--color-forest-dark);
            margin-bottom: 0.75rem;
        }

        .product-description {
            font-size: 0.95rem;
            color: var(--color-earth);
            line-height: 1.6;
        }

        .products-cta {
            text-align: center;
            margin-top: 4rem;
        }

        /* Team Section */
        .team {
            padding: 8rem 5%;
            background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-white) 100%);
            background-image: 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect x="10" y="10" width="80" height="80" fill="none" stroke="%231a5c3f" stroke-width="1" opacity="0.1"/></svg>'),
                linear-gradient(135deg, var(--color-cream) 0%, var(--color-white) 100%);
        }

        .team-header {
            max-width: 1400px;
            margin: 0 auto 5rem;
            text-align: center;
        }

        .team-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--color-forest-dark);
            margin-bottom: 1.5rem;
        }

        .team-subtitle {
            font-size: 1.2rem;
            color: var(--color-earth);
        }

        .team-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .team-card {
            background: var(--color-white);
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
        }

        .team-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            object-position: center top;
            display: block;
        }

        .team-info {
            padding: 2rem;
            text-align: center;
        }

        .team-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--color-forest-dark);
            margin-bottom: 0.5rem;
        }

        .team-role {
            font-size: 1rem;
            color: var(--color-gold);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .team-bio {
            font-size: 0.95rem;
            color: var(--color-earth);
            line-height: 1.7;
        }

        .team-cta {
            text-align: center;
            margin-top: 4rem;
        }

        /* Footer */
        .footer {
            padding: 5rem 5% 2rem;
            background: var(--color-forest-dark);
            color: var(--color-cream);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .footer-brand {
            max-width: 400px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .footer-logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 900;
            color: var(--color-gold);
        }

        .footer-logo-badge {
            background: var(--color-forest);
            color: white;
            padding: 0.3rem 0.6rem;
            border-radius: 5px;
            font-size: 0.6rem;
            font-weight: 700;
        }

        .footer-tagline {
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            color: var(--color-cream);
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            color: var(--color-cream);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-item:hover {
            color: var(--color-gold);
        }

        .footer-section-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--color-gold);
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-links a {
            color: var(--color-cream);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--color-gold);
            transform: translateX(5px);
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: var(--color-cream);
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

            .hero-title {
                font-size: 3.5rem;
            }

            .vmg-grid {
                grid-template-columns: 1fr;
            }

            .values-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .memorial-content {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .mobile-menu {
                display: block;
            }

            .hero {
                padding-top: 6rem;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .hero-stats {
                flex-direction: column;
                gap: 2rem;
            }

            .hero-cta {
                flex-direction: column;
            }

            .hero-image {
                height: 400px;
            }

            .floating-badge {
                bottom: 20px;
                right: 20px;
                padding: 1.5rem;
            }

            .mission-title,
            .products-title,
            .team-title,
            .section-title {
                font-size: 2.5rem;
            }

            .values-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            /* Team section responsive improvements */
            .team-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .team-image {
                height: 350px;
                max-height: 60vw;
                object-fit: cover;
                object-position: center 20%;
                width: 100%;
            }

            .team-card {
                max-width: 400px;
                margin: 0 auto;
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }

            .hero-image {
                height: 300px;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .team-image {
                height: 300px;
                max-height: 70vw;
            }

            .floating-badge {
                position: relative;
                bottom: auto;
                right: auto;
                margin-top: 2rem;
                text-align: center;
            }
        }