:root {
            --primary-green: #1e7e34;
            --secondary-green: #28a745;
            --dark-green: #155724;
            --light-green: #d4edda;
            --accent-gold: #ffc107;
            --text-dark: #333333;
            --text-light: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
            line-height: 1.8;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-green) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(30, 126, 52, 0.85), rgba(21, 87, 36, 0.9)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=2071&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 8rem 0;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 3rem;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary-green);
        }
        .service-card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .icon-wrapper {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--light-green);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--primary-green);
            font-size: 2rem;
        }
        .flink {
            display: inline-block;
            padding: 10px 20px;
            margin: 5px;
            background: #f8f9fa;
            border-radius: 8px;
            color: var(--primary-green);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #dee2e6;
        }
        .flink:hover {
            background: var(--primary-green);
            color: white;
            transform: scale(1.05);
        }
        .footer {
            background: var(--dark-green);
            color: white;
        }
        .contact-info li {
            margin-bottom: 15px;
        }
        .contact-info i {
            width: 30px;
            color: var(--accent-gold);
        }
        .stats-counter {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-green);
        }
        .btn-paradise {
            background: var(--primary-green);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            border: none;
            transition: all 0.3s ease;
        }
        .btn-paradise:hover {
            background: var(--dark-green);
            color: var(--accent-gold);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .img-hover-zoom {
            overflow: hidden;
            border-radius: 10px;
        }
        .img-hover-zoom img {
            transition: transform 0.5s ease;
        }
        .img-hover-zoom:hover img {
            transform: scale(1.05);
        }
        .breadcrumb {
            background-color: var(--light-green);
        }
        .accordion-button:not(.collapsed) {
            background-color: var(--light-green);
            color: var(--dark-green);
        }
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 4rem 0;
            }
            .display-4 {
                font-size: 2.2rem;
            }
            .stats-counter {
                font-size: 2.2rem;
            }
        }
