
        :root {
            --primary-color: #C4942F;
            --secondary-color: #2c3e50;
        }
        
        
        /* Header Styles */
        .main-header {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
        }
        
        .logo {
            height: auto;
            display: flex;
            align-items: center;
        }
        
        .logo a {
            display: block;
            width: 180px;
            height: auto;
            background: var(--primary-color);
            border-radius: 4px;
            text-align: center;
            line-height: 40px;
            color: white;
            font-weight: bold;
            text-decoration: none;
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: all 0.3s;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .dropdown-menu {
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-radius: 8px;
        }
        
        .dropdown-item {
            padding: 0.5rem 1rem;
            transition: all 0.3s;
        }
        
        .dropdown-item:hover {
            background-color: var(--primary-color);
            color: white;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        /* Mobile Dropdown Fix */
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: white;
                padding: 20px;
                border-radius: 8px;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
                margin-top: 10px;
                max-height: 80vh;
                overflow-y: auto;
            }
            
            .dropdown-menu {
                box-shadow: none;
                border-left: 3px solid var(--primary-color);
                margin-left: 15px;
                background: #f8f9fa;
                width: 90%;
            }
            
            .navbar-nav {
                padding: 10px 0;
            }
            
            /* Custom dropdown indicator for mobile */
            .dropdown-toggle::after {
                display: inline-block;
                margin-left: 0.255em;
                vertical-align: 0.255em;
                content: "";
                border-top: 0.3em solid;
                border-right: 0.3em solid transparent;
                border-bottom: 0;
                border-left: 0.3em solid transparent;
                float: right;
                margin-top: 0.5em;
            }
            
            /* Show dropdown when active */
            .dropdown.show .dropdown-menu {
                display: block;
                position: static;
                float: none;
                width: 100%;
                margin-top: 0.5rem;
            }
        }
        
        /* Demo Content */
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23C4942F"/></svg>');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            margin-bottom: 50px;
            border-radius: 10px;
        }
        
        .service-card {
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .btn-primary:hover {
            background-color: #a87a20;
            border-color: #a87a20;
        }

        
