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

        body {
            font-family: 'Georgia', serif;
            background: #FFFFFF;
            color: #2E2E2E;
            line-height: 1.7;
            overflow-x: hidden;
        }

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

        /* Header */
        .header {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #FFFFFF 0%, #C4B7A6 100%);
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="1" fill="%23046A38" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-10px) rotate(1deg); }
        }

        .hero-content {
            text-align: center;
            z-index: 2;
            position: relative;
            animation: fadeInUp 1.5s ease-out;
        }

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

        .hero-title {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 300;
            color: #046A38;
            margin-bottom: 2rem;
            letter-spacing: -2px;
            position: relative;
        }

        .hero-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #B3A580, transparent);
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% { opacity: 0.5; transform: translateX(-50%) scaleX(1); }
            50% { opacity: 1; transform: translateX(-50%) scaleX(1.2); }
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: #2E2E2E;
            font-weight: 300;
            opacity: 0.8;
            animation: fadeInUp 1.5s ease-out 0.3s both;
        }

        /* Navigation Dots */
        .nav-dots {
            position: fixed;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 100;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #C4B7A6;
            margin: 15px 0;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .dot.active {
            background: #046A38;
            transform: scale(1.3);
        }

        .dot::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 20px;
            height: 20px;
            border: 1px solid #046A38;
            border-radius: 50%;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .dot:hover::before {
            opacity: 0.5;
        }

        /* Content Sections */
        .section {
            padding: 120px 0;
            position: relative;
        }

        .section-title {
            font-size: 3rem;
            color: #046A38;
            text-align: center;
            margin-bottom: 3rem;
            font-weight: 300;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .section-title.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .story-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-bottom: 100px;
        }

        .story-text {
            font-size: 1.2rem;
            line-height: 1.8;
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease;
        }

        .story-text.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .story-text p {
            margin-bottom: 1.5rem;
        }

        .story-text .highlight {
            color: #046A38;
            font-weight: 600;
        }

        .story-image {
            position: relative;
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease;
        }

        .story-image.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .image-placeholder {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, #C4B7A6, #B3A580);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(4, 106, 56, 0.1);
        }

        .image-placeholder::before {
            content: 'PURE ESSENCE';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 1.5rem;
            font-weight: 300;
            color: #FFFFFF;
            letter-spacing: 3px;
            text-align: center;
        }

        .image-placeholder::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
            animation: shine 3s ease-in-out infinite;
        }

        @keyframes shine {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        /* Values Section */
        .values-container {
            background: linear-gradient(180deg, #FFFFFF 0%, #C4B7A6 50%, #FFFFFF 100%);
            padding: 100px 0;
            margin: 100px 0;
            border-radius: 50px;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 60px;
            margin-top: 80px;
        }

        .value-card {
            text-align: center;
            padding: 40px 30px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(4, 106, 56, 0.1);
            transform: translateY(50px);
            opacity: 0;
            transition: all 0.8s ease;
            box-shadow: 0 10px 40px rgba(4, 106, 56, 0.05);
        }

        .value-card.animate {
            transform: translateY(0);
            opacity: 1;
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(4, 106, 56, 0.15);
        }

        .value-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #046A38, #B3A580);
            border-radius: 50%;
            margin: 0 auto 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            position: relative;
        }

        .value-icon::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border: 2px solid #B3A580;
            border-radius: 50%;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .value-card:hover .value-icon::before {
            opacity: 0.5;
        }

        .value-title {
            font-size: 1.5rem;
            color: #046A38;
            margin-bottom: 20px;
            font-weight: 400;
        }

        .value-description {
            color: #2E2E2E;
            line-height: 1.6;
            opacity: 0.8;
        }

        /* Team Section */
        .team-intro {
            text-align: center;
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 80px;
            color: #2E2E2E;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .team-intro.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .cta-section {
            background: linear-gradient(135deg, #046A38, #B3A580);
            color: white;
            text-align: center;
            padding: 100px 0;
            margin-top: 100px;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><polygon points="100,10 40,198 190,78 10,78 160,198" fill="none" stroke="%23FFFFFF" stroke-width="1" opacity="0.1"/></svg>');
            animation: rotate 30s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .cta-title {
            font-size: 3rem;
            margin-bottom: 2rem;
            font-weight: 300;
            position: relative;
            z-index: 2;
        }

        .cta-text {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        .cta-button {
            display: inline-block;
            padding: 20px 50px;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid white;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 400;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
            backdrop-filter: blur(10px);
        }

        .cta-button:hover {
            background: white;
            color: #046A38;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }

            .story-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .values-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .section {
                padding: 80px 0;
            }

            .nav-dots {
                display: none;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }
        }