:root {
            --primary-green: #2a5c3d;
            --secondary-gold: #d4af37;
            --light-beige: #f8f5f0;
            --dark-gray: #333333;
            --medium-gray: #666666;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--dark-gray);
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, .navbar-brand {
            font-family: 'Georgia', 'Times New Roman', serif;
            font-weight: 700;
        }
        .bg-gradient-primary {
            background: linear-gradient(135deg, var(--primary-green) 0%, #1a472a 100%);
        }
        .text-gold {
            color: var(--secondary-gold);
        }
        .bg-light-beige {
            background-color: var(--light-beige);
        }
        .btn-primary {
            background-color: var(--primary-green);
            border-color: var(--primary-green);
            padding: 12px 28px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background-color: #1e472f;
            border-color: #1e472f;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .btn-outline-primary {
            color: var(--primary-green);
            border-color: var(--primary-green);
        }
        .btn-outline-primary:hover {
            background-color: var(--primary-green);
            border-color: var(--primary-green);
        }
        .navbar {
            padding-top: 1.2rem;
            padding-bottom: 1.2rem;
            transition: all 0.4s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .navbar.scrolled {
            padding-top: 0.7rem;
            padding-bottom: 0.7rem;
            background-color: rgba(255, 255, 255, 0.98) !important;
            backdrop-filter: blur(10px);
        }
        .nav-link {
            font-weight: 500;
            margin: 0 8px;
            color: var(--dark-gray) !important;
            position: relative;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--primary-green) !important;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--secondary-gold);
            left: 50%;
            bottom: 0;
            transition: all 0.3s ease;
        }
        .nav-link:hover::after, .nav-link.active::after {
            width: 80%;
            left: 10%;
        }
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            color: white;
            padding: 160px 0 100px;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 50px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--secondary-gold);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        .section-title.left-align::after {
            left: 0;
            transform: none;
        }
        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--light-beige);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 32px;
            color: var(--primary-green);
            transition: all 0.3s ease;
        }
        .feature-card:hover .feature-icon {
            background: var(--primary-green);
            color: white;
            transform: scale(1.1);
        }
        .product-card {
            border: 1px solid #eaeaea;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.4s ease;
            height: 100%;
        }
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            border-color: var(--secondary-gold);
        }
        .product-img {
            height: 220px;
            object-fit: cover;
            width: 100%;
            transition: transform 0.5s ease;
        }
        .product-card:hover .product-img {
            transform: scale(1.05);
        }
        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }
        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background-color: var(--secondary-gold);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
        }
        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }
        .timeline-item:nth-child(odd) {
            left: 0;
        }
        .timeline-item:nth-child(even) {
            left: 50%;
        }
        .timeline-content {
            padding: 20px 30px;
            background-color: white;
            position: relative;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .timeline-item:nth-child(odd) .timeline-content::after {
            content: " ";
            position: absolute;
            top: 20px;
            right: -15px;
            border-width: 10px 0 10px 15px;
            border-style: solid;
            border-color: transparent transparent transparent white;
        }
        .timeline-item:nth-child(even) .timeline-content::after {
            content: " ";
            position: absolute;
            top: 20px;
            left: -15px;
            border-width: 10px 15px 10px 0;
            border-style: solid;
            border-color: transparent white transparent transparent;
        }
        .timeline-date {
            font-weight: 600;
            color: var(--primary-green);
            margin-bottom: 10px;
            display: inline-block;
            padding: 5px 15px;
            background: var(--light-beige);
            border-radius: 30px;
        }
        .flink {
            display: inline-block;
            padding: 12px 24px;
            margin: 8px;
            background: white;
            border-radius: 8px;
            color: var(--medium-gray);
            text-decoration: none;
            font-weight: 500;
            border: 1px solid #eaeaea;
            transition: all 0.3s ease;
        }
        .flink:hover {
            background: var(--primary-green);
            color: white;
            border-color: var(--primary-green);
            transform: translateY(-3px);
        }
        .footer {
            background-color: #1a1a1a;
            color: #aaa;
            padding-top: 60px;
        }
        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: var(--secondary-gold);
        }
        .footer-bottom {
            border-top: 1px solid #333;
            padding: 20px 0;
            margin-top: 40px;
        }
        .form-control:focus {
            border-color: var(--primary-green);
            box-shadow: 0 0 0 0.25rem rgba(42, 92, 61, 0.25);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 120px 0 80px;
            }
            .timeline::after {
                left: 31px;
            }
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            .timeline-item:nth-child(even) {
                left: 0;
            }
            .timeline-item:nth-child(odd) .timeline-content::after,
            .timeline-item:nth-child(even) .timeline-content::after {
                left: -15px;
                border-width: 10px 15px 10px 0;
                border-color: transparent white transparent transparent;
            }
        }
