        /* CSS Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        /* Variables */
        :root {
            --primary-color: #2c3e50;
            --secondary-color: #34495e;
            --accent-color: #3498db;
            --accent-light: #e7f4fd;
            --light-color: #f5f7f9;
            --dark-color: #2c3e50;
            --text-color: #333;
            --border-color: #e0e0e0;
            --header-height: 65px; /* Match your header height */
            --container-width: 1140px;
            --border-radius: 6px;
        }

        body {
            background-color: #f8f9fa;
            padding-top: var(--header-height); /* Space for fixed header */
            color: var(--text-color);
        }

        /* Hero Container */
        .hb .hero-container {
            width: 100%;
            background-color: var(--light-color);
            padding: 42px 0;
        }

        /* Override any form styles that might leak in */
        .hb form {
            max-width: none !important;
            margin: 0 !important;
            background: transparent !important;
            border-radius: 0 !important;
        }

        .hb form input[type="text"],
        .hb form input[type="email"],
        .hb form input[type="tel"],
        .hb form input[type="url"],
        .hb form input[type="date"],
        .hb form input[type="time"],
        .hb form input[type="number"],
        .hb form select,
        .hb form textarea {
            width: auto !important;
            padding: 10px 16px !important;
            margin-bottom: 0 !important;
            border: 1px solid var(--border-color) !important;
            border-radius: var(--border-radius) !important;
            font-size: 14px !important;
            font-family: inherit !important;
            transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
            box-sizing: border-box !important;
        }

        .hb form button[type="submit"] {
            background-color: var(--accent-color) !important;
            color: white !important;
            padding: 0 20px !important;
            border: none !important;
            border-radius: var(--border-radius) !important;
            cursor: pointer !important;
            font-size: 14px !important;
            font-weight: 500 !important;
            transition: background-color 0.2s ease !important;
            margin-top: 0 !important;
            width: auto !important;
        }

        .hb form button[type="submit"]:hover {
            background-color: #2980b9 !important;
            transform: none !important;
        }

        .hb form button[type="submit"]:active {
            transform: none !important;
        }

        /* Hero Content */
        .hb .hero-content {
            max-width: var(--container-width);
            margin: 0 auto;
            display: flex;
            gap: 30px;
            padding: 0 20px;
            box-sizing: border-box;
        }

        /* Search Section Title */
        .hb .search-title {
            font-size: 20px;
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 16px;
        }

        /* Search Form - Override forms.css */
        .hb .search-form {
            display: flex !important;
            gap: 10px !important;
            margin-bottom: 16px !important;
            max-width: none !important;
            background: transparent !important;
            border-radius: 0 !important;
        }

        .hb .search-input {
            flex: 1 !important;
            padding: 10px 16px !important;
            border: 1px solid var(--border-color) !important;
            border-radius: var(--border-radius) !important;
            font-size: 14px !important;
            width: auto !important;
            margin-bottom: 0 !important;
            font-family: inherit !important;
            transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
            box-sizing: border-box !important;
        }

        .hb .search-input:focus {
            outline: none !important;
            border-color: var(--accent-color) !important;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1) !important;
        }

        .hb .search-button {
            padding: 0 20px !important;
            background-color: var(--accent-color) !important;
            color: white !important;
            border: none !important;
            border-radius: var(--border-radius) !important;
            font-weight: 500 !important;
            cursor: pointer !important;
            transition: background-color 0.2s ease !important;
            font-size: 14px !important;
            margin-top: 0 !important;
            width: auto !important;
        }

        .hb .search-button:hover {
            background-color: #2980b9 !important;
            transform: none !important;
        }

        .hb .search-button:active {
            transform: none !important;
        }

        /* Popular Searches */
        .hb .popular-searches {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
        }

        .hb .popular-label {
            font-size: 14px;
            font-weight: 500;
            color: var(--dark-color);
        }

        .hb .search-tag {
            background-color: var(--accent-light);
            color: var(--accent-color);
            padding: 6px 12px;
            border-radius: var(--border-radius);
            font-size: 13px;
            cursor: pointer;
            transition: background-color 0.2s ease;
        }

        .hb .search-tag:hover {
            background-color: rgba(52, 152, 219, 0.2);
        }

        /* Right Section - Information Updates */
        .hb .hero-right {
            flex: 2; /* 40% of the width */
        }

        .hb .info-item {
            background-color: #eef0f2;
            padding: 20px;
            border-radius: var(--border-radius);
            border: 1px solid var(--border-color);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .hb .info-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 8px;
        }

        .hb .info-text {
            font-size: 14px;
            color: var(--text-color);
            line-height: 1.5;
            margin-bottom: 10px;
        }

        .hb .info-link {
            display: inline-block;
            color: var(--accent-color);
            font-weight: 500;
            text-decoration: none;
            font-size: 14px;
            margin-top: auto;
        }

        .hb .info-link:hover {
            text-decoration: underline;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .hb .hero-content {
                flex-direction: column;
            }

            .hb .hero-left, .hb .hero-right {
                flex: none;
                width: 100%;
            }

            .hb .info-item {
                height: auto;
            }
        }

        @media (max-width: 480px) {
            .hb .hero-container {
                padding: 15px 0;
            }

            .hb .hero-left, .hb .hero-right {
                padding: 15px;
            }

            .hb .search-title {
                font-size: 18px;
            }

            .hb .popular-searches {
                flex-direction: column;
                align-items: flex-start;
            }

            .hb .popular-label {
                margin-bottom: 5px;
            }
        }