        :root {
            --primary-color: #198754; /* Hijau Bootstrap */
            --secondary-color: #5c8d89;
            --accent-color: #6dbd9c;
            --light-color: #e9f7ef;
            --dark-color: #0f5132;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            color: #333;
        }
        
        .navbar-brand img {
            height: 50px;
        }
        
        .hero-section {
            background: linear-gradient(rgba(25, 135, 84, 0.8), rgba(25, 135, 84, 0.9)), url('../img/med.png');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
        }
        
        .service-card {
            transition: all 0.3s ease;
            border-radius: 10px;
            overflow: hidden;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            font-size: 40px;
            color: var(--primary-color);
        }
        
        .about-img {
            border-radius: 10px;
            overflow: hidden;
        }
        
        .client-logo {
            height: 80px;
            object-fit: contain;
            /* filter: grayscale(100%); */
            transition: all 0.3s ease;
        }
        
        .client-logo:hover {
            /* filter: grayscale(0%); */
            transform: scale(1.05);
        }
        
        .fixed-whatsapp {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
        }
        
        .whatsapp-button {
            background-color: #25d366;
            color: white;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }
        
        .whatsapp-button:hover {
            transform: scale(1.1);
        }
        
        footer {
            background-color: #0f5132;
            color: white;
        }
        
        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
            text-decoration: underline;
        }
        
        .social-links a {
            color: white;
            margin-right: 15px;
            font-size: 20px;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            color: var(--accent-color);
        }
        
        .maps-container {
            height: 400px;
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
        }
        
        .contact-info i {
            color: var(--primary-color);
            margin-right: 10px;
        }
        
        .counter-box {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            background-color: rgba(255, 255, 255, 0.9);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
        }
        
        .counter-box i {
            font-size: 40px;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .counter {
            font-size: 36px;
            font-weight: bold;
            color: var(--primary-color);
        }
        
        .counter-text {
            font-size: 16px;
            color: var(--secondary-color);
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .btn-primary:hover,
        .btn-primary:focus {
            background-color: var(--dark-color);
            border-color: var(--dark-color);
        }
        
        .btn-outline-primary {
            color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .btn-outline-primary:hover,
        .btn-outline-primary:focus {
            background-color: var(--primary-color);
            color: white;
        }
        
        .bg-light {
            background-color: var(--light-color) !important;
        }
        
        .text-primary {
            color: var(--primary-color) !important;
        }
        
        /* Animasi untuk counter */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-fade-in-up {
            animation: fadeInUp 0.5s ease-out;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0; /* Reduce vertical padding */
            }
            
            .hero-section .row {
                flex-direction: column; /* Stack content vertically */
            }
            
            .hero-section .animate-fade-in-up {
                text-align: center; /* Center align text on mobile */
            }
            
            .hero-section .display-4 {
                font-size: 2.5rem; /* Reduce title font size */
            }
            
            .hero-section .lead {
                font-size: 1rem; /* Reduce paragraph font size */
            }
            
            .hero-section .counter-box {
                margin-top: 20px; /* Reduce top margin for counter boxes */
                padding: 15px 10px; /* Reduce padding */
            }
            
            .hero-section .counter {
                font-size: 28px; /* Reduce counter font size */
            }
            
            .hero-section .counter-text {
                font-size: 14px; /* Reduce counter text font size */
            }
            .hero-section .d-flex {
                justify-content: center; /* Center the button container */
                gap: 10px; /* Add some space between buttons */
            }
        
            .hero-section .btn-group {
                flex-direction: column;
                align-items: center; /* Center the buttons */
                width: 100%; /* Full width to ensure center alignment */
            }
        
            .hero-section .btn-lg {
                margin-bottom: 10px; /* Add some space between buttons */
                width: 100%;
            }
        }