
        :root {
            --primary-green: #1a472a;
            --secondary-green: #2e8b57;
            --light-green: #e8f5e9;
            --accent-gold: #d4af37;
            --white: #ffffff;
            --dark-text: #2c3e50;
            --light-text: #7f8c8d;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box; 
        }
        
        body {
            background-color: var(--white);
            color: var(--dark-text);
            line-height: 1.6;
            font-family: 'Georgia', serif;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Typography */
        h1, h2, h3, h4 {
            color: var(--primary-green);
            margin-bottom: 1rem;
            font-weight: normal;
        }
        
        h1 {
            font-size: 2.5rem;
            position: relative;
            display: inline-block;
        }
        
        h1:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--accent-gold);
        }
        
        h2 {
            font-size: 2rem;
        }
        
        p {
            margin-bottom: 1.5rem;
            color: var(--dark-text);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(26, 71, 42, 0.8), rgba(26, 71, 42, 0.8)), url('https://images.unsplash.com/photo-1558769132-cb1aea458c5e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 100px 0;
            text-align: center;
        }
        
        .hero h1 {
            color: var(--white);
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }
        
        .hero h1:after {
            background-color: var(--accent-gold);
            left: 50%;
            transform: translateX(-50%);
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            color: var(--light-green);
        }
        
        /* Section Styling */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        /* Our Story Section */
        .story-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .story-text {
            flex: 1;
        }
        
        .story-image {
            flex: 1;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .story-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* Values Section */
        .values {
            background-color: var(--light-green);
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .value-card {
            background: var(--white);
            padding: 30px;
            border-radius: 5px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        
        .value-card:hover {
            transform: translateY(-10px);
        }
        
        .value-icon {
            font-size: 2.5rem;
            color: var(--secondary-green);
            margin-bottom: 1.5rem;
        }
        
        .value-card h3 {
            margin-bottom: 1rem;
        }
        
        /* Team Section */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .team-member {
            text-align: center;
        }
        
        .member-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 1.5rem;
            border: 3px solid var(--secondary-green);
        }
        
        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .team-member h3 {
            margin-bottom: 0.5rem;
        }
        
        .team-member p {
            color: var(--light-text);
            font-style: italic;
        }
        
        /* CTA Section */
        .cta {
            background-color: var(--primary-green);
            color: var(--white);
            text-align: center;
            padding: 80px 0;
        }
        
        .cta h2 {
            color: var(--white);
            margin-bottom: 1.5rem;
        }
        
        .cta p {
            max-width: 700px;
            margin: 0 auto 2rem;
            color: var(--light-green);
        }
        
        .btn {
            display: inline-block;
            background-color: var(--accent-gold);
            color: var(--primary-green);
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            border: 2px solid var(--accent-gold);
        }
        
        .btn:hover {
            background-color: transparent;
            color: var(--accent-gold);
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .story-content {
                flex-direction: column;
            }
            
            .story-image {
                order: -1;
            }
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            section {
                padding: 60px 0;
            }
            
            .hero {
                padding: 80px 0;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .container {
                padding: 0 15px;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .values-grid,
            .team-grid {
                grid-template-columns: 1fr;
            }
        }
    