:root {
            --primary-color: #1a6d3f;
            --secondary-color: #ff9900;
            --light-color: #f8f9fa;
            --dark-color: #343a40;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1535223289827-42f1e9919769?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
            color: white;
            padding: 150px 0;
        }
        .section-title {
            color: var(--primary-color);
            border-bottom: 3px solid var(--secondary-color);
            display: inline-block;
            padding-bottom: 10px;
        }
        .card {
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .card:hover {
            transform: translateY(-10px);
        }
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        .btn-primary:hover {
            background-color: #14532d;
            border-color: #14532d;
        }
        .flink {
            color: var(--dark-color);
            text-decoration: none;
            padding: 8px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
            display: inline-block;
            margin: 5px;
            background-color: #f1f1f1;
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
        }
        footer {
            background-color: var(--dark-color);
            color: white;
        }
        .social-icons a {
            color: white;
            font-size: 1.5rem;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        .social-icons a:hover {
            color: var(--secondary-color);
        }
        .testimonial-card {
            background-color: #f8f9fa;
            border-left: 5px solid var(--secondary-color);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 100px 0;
            }
            .display-4 {
                font-size: 2.5rem;
            }
        }
