:root {
            --primary-green: #006747;
            --secondary-gold: #CFB991;
            --accent-blue: #0056b3;
            --dark-bg: #121212;
            --light-bg: #f8f9fa;
            --text-dark: #212529;
            --text-light: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            margin-bottom: 1rem;
        }
        .navbar {
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        .navbar-brand {
            font-weight: 800;
            color: var(--primary-green) !important;
            font-size: 1.8rem;
        }
        .nav-link {
            font-weight: 600;
            color: var(--text-dark) !important;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .nav-link:hover, .nav-link.active {
            background-color: var(--primary-green);
            color: white !important;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1551958219-acbc608c6377?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            color: white;
            padding: 10rem 0 6rem;
            min-height: 90vh;
            display: flex;
            align-items: center;
        }
        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
        }
        @media (max-width: 768px) {
            .hero-title { font-size: 2.5rem; }
        }
        .btn-primary-custom {
            background-color: var(--primary-green);
            border: none;
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary-custom:hover {
            background-color: var(--secondary-gold);
            color: var(--text-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        .section-padding {
            padding: 6rem 0;
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
            text-align: center;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary-green);
        }
        .icon-box {
            font-size: 3rem;
            color: var(--primary-green);
            margin-bottom: 1.5rem;
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            border: none;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        .team-img {
            height: 280px;
            object-fit: cover;
            object-position: top;
        }
        .bg-light-custom {
            background-color: var(--light-bg);
        }
        .bg-dark-custom {
            background-color: var(--dark-bg);
            color: var(--text-light);
        }
        .contact-info li {
            margin-bottom: 1.5rem;
            display: flex;
            align-items: flex-start;
        }
        .contact-info i {
            color: var(--primary-green);
            margin-right: 1rem;
            font-size: 1.2rem;
            margin-top: 0.3rem;
        }
        .form-control-custom {
            padding: 0.8rem 1rem;
            border-radius: 8px;
            border: 1px solid #ddd;
            transition: all 0.3s;
        }
        .form-control-custom:focus {
            border-color: var(--primary-green);
            box-shadow: 0 0 0 0.25rem rgba(0, 103, 71, 0.25);
        }
        .footer {
            background-color: #111;
            color: #aaa;
            padding: 4rem 0 2rem;
        }
        .footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: var(--secondary-gold);
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #333;
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        .social-icons a:hover {
            background-color: var(--primary-green);
            transform: scale(1.1);
        }
        .flink {
            background-color: white;
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100px;
            border: 1px solid #eee;
            transition: all 0.3s ease;
        }
        .flink:hover {
            border-color: var(--primary-green);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transform: translateY(-5px);
        }
        .flink img {
            max-height: 40px;
            max-width: 120px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        .flink:hover img {
            filter: grayscale(0%);
            opacity: 1;
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-green);
            line-height: 1;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-green);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background-color: var(--secondary-gold);
            color: var(--text-dark);
        }
