/* Extracted from public/services.php — keep selectors unchanged */

:root {
            --deep-green: #0a4d1c;
            --bright-green: #1a5928;
            --maanyag-gold: #ffcc00;
            --soft-white: #f4f7f5;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--soft-white);
            color: #333;
        }

        .navbar {
            background: white;
            border-bottom: 4px solid var(--maanyag-gold);
        }

        .navbar-brand img {
            height: 50px;
        }

        .service-box {
            background-color: var(--deep-green);
            color: white;
            padding: 30px;
            border-radius: 15px;
            height: 100%;
            transition: 0.3s;
        }

        .service-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .service-box h5 {
            font-weight: 800;
            text-transform: uppercase;
            border-bottom: 2px solid var(--maanyag-gold);
            padding-bottom: 10px;
            margin-bottom: 15px;
        }

        .service-box p {
            font-size: 0.95rem;
            opacity: 0.9;
        }

        footer {
            background: var(--deep-green);
            color: white;
            padding: 60px 0 30px;
        }

        @media (max-width: 768px) {
            .navbar-brand img {
                height: 40px;
            }
            .service-box {
                padding: 20px;
            }
            footer {
                padding: 36px 0 20px;
            }
        }
