        .btn-primary {
            @apply bg-primary text-white px-6 py-2 font-medium hover:bg-primary-hover transition-colors duration-300;
        }

        .btn-secondary {
            @apply border-2 border-primary text-primary px-6 py-2 font-medium hover:bg-primary hover:text-white transition-colors duration-300;
        }

        header {
            transition: transform 0.3s ease-in-out;
        }

        .dropdown-menu {
            top: 100%;
        }

        .hamburger {
            cursor: pointer;
            width: 24px;
            height: 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .bar {
            width: 100%;
            height: 2px;
            background-color: #000;
            transition: all 0.3s;
        }

        .hamburger.active .bar:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active .bar:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active .bar:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.9);
            transform: translateX(-100%);
            transition: transform 0.3s ease-in-out;
            padding-top: 80px;
            z-index: 1000;
            font-family: 'Montserrat', sans-serif;
            overflow-y: auto;
        }

        .mobile-menu.active {
            transform: translateX(0);
        }

        .menu-item {
            padding: 10px 20px;
            color: #000;
            font-size: 16px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            font-weight: 500;
        }

        .menu-item .toggle {
            float: right;
            font-weight: 500;
        }

        .submenu {
            display: none;
            padding-left: 20px;
        }

        .submenu.active {
            display: block;
        }

        @media (min-width: 768px) {

            .mobile-menu,
            .hamburger {
                display: none;
            }
        }

        .hover\:text-primary:hover {
            color: #B79140 !important;
        }

        .bg-primary {
            background-color: #B79140 !important;
        }

        .border-primary {
            border-color: #B79140 !important;
        }
