   <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

@font-face {
  font-family: Mont-Heavy;
  src: url(fonts/Mont-Heavy.otf);
}

@font-face {
  font-family: DefaultSans;
  src: url(fonts/DefaultSans.ttf);
}

        /* ========== TOP BAR ========== */
        .gerow-topbar {
            background-color: #14532d;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 0 0 30px;
            height: 50px;
        }

        .gerow-topbar-left {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .gerow-topbar-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #d1d5db;
            font-size: 14px;
        }

        .gerow-topbar-item i {
            color: #d1d5db;
            font-size: 14px;
        }

        .gerow-topbar-right {
            display: flex;
            align-items: center;
            height: 100%;
        }

        .gerow-social-links {
            display: flex;
            align-items: center;
            gap: 18px;
            padding-right: 30px;
        }

        .gerow-social-links a {
            color: #d1d5db;
            font-size: 14px;
            transition: color 0.3s;
        }

        .gerow-social-links a:hover {
            color: #22c55e;
        }

        .gerow-consult-btn {
            background-color: #22c55e;
            color: white;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
            padding: 0 25px;
            height: 100%;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: background-color 0.3s;
font-family: DefaultSans;
        }

        .gerow-consult-btn:hover {
            background-color: #16a34a;
        }

        .gerow-consult-btn i {
            font-size: 16px;
        }

        /* ========== MAIN NAVIGATION ========== */
   
element.style {
}
.gerow-main-header {
    background-color: #ffffff;
    display: flex
;
    justify-content: flex-start;
    align-items: center;
    padding: 0 30px;
    height: 80px;
    gap: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    font-family: DefaultSans;
        }

        .gerow-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            gap: 5px;
        }

        .gerow-logo-icon {
            width: 140px;
            height: 100px;
            position: relative;
        }

        .gerow-logo-icon::before {
            content: '';
            position: absolute;
            left: 0;
            top: -7px;
            width: 100%;
            height: 100%;
            background-image: url(images/frogfooter.webp);
background-size: cover;
        }

        .gerow-logo-text {
            font-size: 28px;
            font-weight: 700;
            color: #14532d;
font-family: Mont-Heavy;
margin-left: 3%;
        }

        .gerow-nav-center {
            display: flex;
            align-items: center;
        }

        .gerow-nav-menu {
            display: flex;
            list-style: none;
            gap: 35px;
        }

        .gerow-nav-menu li {
            position: relative;
        }

        .gerow-nav-menu a {
            text-decoration: none;
            color: #14532d;
            font-size: 15px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: color 0.3s;
            padding: 10px 0;
        }

        .gerow-nav-menu a:hover {
            color: #22c55e;
        }

        .gerow-nav-menu a i {
            font-size: 10px;
            transition: transform 0.3s;
        }

        .gerow-nav-menu li:hover > a i {
            transform: rotate(180deg);
        }

      

        .gerow-nav-right {
            display: flex;
            align-items: center;
        }

        .gerow-hotline {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .gerow-hotline-icon {
            width: 50px;
            height: 50px;
            background-color: #22c55e;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gerow-hotline-icon i {
            color: white;
            font-size: 18px;
        }

        .gerow-hotline-info {
            display: flex;
            flex-direction: column;
        }

        .gerow-hotline-label {
            color: #6b7280;
            font-size: 12px;
        }

        .gerow-hotline-number {
            color: #14532d;
            font-size: 18px;
            font-weight: 700;
            text-decoration: none;
        }

        .gerow-hotline-number:hover {
            color: #22c55e;
        }

        .gerow-header-icons {
            display: flex;
            align-items: center;
            gap: 15px;
            padding-left: 25px;
            border-left: 1px solid #e5e7eb;
        }


        .gerow-search-btn,
        .gerow-menu-toggle {
            background: none;
            border: none;
            color: #14532d;
            font-size: 20px;
            cursor: pointer;
            padding: 5px;
            transition: color 0.3s;
        }

        .gerow-search-btn:hover,
        .gerow-menu-toggle:hover {
            color: #22c55e;
        }

        .gerow-menu-toggle {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .gerow-menu-toggle span {
            width: 25px;
            height: 2px;
            background-color: #14532d;
            transition: all 0.3s;
        }

        .gerow-menu-toggle:hover span {
            background-color: #22c55e;
        }

        /* ========== MOBILE MENU ========== */
        .gerow-mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            right: -100%;
            width: 300px;
            height: 100vh;
            background-color: #14532d;
            z-index: 1000;
            transition: right 0.3s ease;
            overflow-y: auto;
        }

        .gerow-mobile-menu.active {
            right: 0;
        }

        .gerow-mobile-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            border-bottom: 1px solid #166534;
        }

        .gerow-mobile-logo {
            display: flex;
            align-items: center;
            gap: 5px;
            text-decoration: none;
        }

        .gerow-mobile-logo-icon {
            width: 30px;
            height: 30px;
            position: relative;
        }

        .gerow-mobile-logo-icon::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: #22c55e;
            clip-path: polygon(0 0, 60% 0, 100% 50%, 60% 100%, 0 100%, 40% 50%);
        }

        .gerow-mobile-logo-text {
            font-size: 22px;
            font-weight: 700;
            color: #fff;
font-family: Mont-Heavy;
        }

        .gerow-mobile-close {
            background: none;
            border: none;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
        }

        .gerow-mobile-nav {
            padding: 20px;
        }

        .gerow-mobile-nav ul {
            list-style: none;
        }

        .gerow-mobile-nav > ul > li {
            border-bottom: 1px solid #166534;
        }

        .gerow-mobile-nav a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            padding: 15px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color 0.3s;
        }

        .gerow-mobile-nav a:hover {
            color: #22c55e;
        }

        .gerow-mobile-submenu {
            display: none;
            padding-left: 15px;
        }

        .gerow-mobile-submenu.active {
            display: block;
        }

        .gerow-mobile-submenu a {
            padding: 12px 0;
            font-size: 14px;
        }

        .gerow-mobile-contact {
            padding: 20px;
            border-top: 1px solid #166534;
            margin-top: 20px;
        }

        .gerow-mobile-contact p {
            color: #d1d5db;
            font-size: 14px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .gerow-mobile-contact i {
            color: #22c55e;
            width: 16px;
        }

        .gerow-mobile-consult {
            display: block;
            background-color: #22c55e;
            color: #fff;
            text-align: center;
            padding: 15px;
            margin: 20px;
            text-decoration: none;
            font-weight: 600;
            border-radius: 5px;
font-family: DefaultSans;
        }

        /* Overlay */
        .gerow-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }

        .gerow-overlay.active {
            display: block;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 2600px) {
            .gerow-nav-menu {
                gap: 25px;
            }


.gerow-menu-toggle {
    display: none;
}
        }

        @media (max-width: 992px) {
            .gerow-topbar-left {
                gap: 15px;
            }

            .gerow-topbar-item span {
                display: none;
            }

            .gerow-topbar-item i {
                font-size: 16px;
            }

            .gerow-nav-center {
                display: none;
            }

            .gerow-mobile-menu {
                display: block;
            }

            .gerow-main-header {
                padding: 0 20px;
                height: 70px;
            }
 .gerow-menu-toggle {
        display: flex;
    }
        }

            .gerow-header-icons {
                border-left: none;
                padding-left: 0;
            }
        }

        @media (max-width: 768px) {
            .gerow-topbar {
                padding: 0 15px;
            }

            .gerow-hotline {
                display: none;
            }

            .gerow-topbar-left {
                display: none;
            }

            .gerow-social-links {
                padding-right: 15px;
            }

             .gerow-consult-btn {
            background-color: #22c55e;
            color: white;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
            padding: 0 25px;
            height: 100%;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: background-color 0.3s;
font-family: DefaultSans;
        }


            .gerow-main-header {
                padding: 0 15px;
            }

            .gerow-logo-text {
                font-size: 24px;
            }
        }

        @media (max-width: 480px) {

            .gerow-hotline {
                display: none;
            }

            .gerow-topbar {
                height: 0px;
            }
.gerow-main-header {
    gap: 10px;
        }

.gerow-topbar-right {
    margin-right: 10px;
    display: flex
;
    align-items: center;
    height: 100%;
}

            .gerow-social-links {
                gap: 12px;
            }

            .gerow-main-header {
                height: 60px;
            }

            .gerow-logo-icon {
                width: 28px;
                height: 28px;
            }

            .gerow-logo-text {
                font-size: 20px;
            }

            .gerow-search-btn {
                display: none;
            }

            .gerow-mobile-menu {
                width: 100%;
            }
        }
    </style>