* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
        }

        /* ==================== DESKTOP STYLES ==================== */
        .desktop_header {
            position: relative;
            width: 100%;
            min-width: 1200px;
            height: 130px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 60px 0 0;
            background-color: #8b0000;
        }

        .desktop_logo_container {
            /*background: linear-gradient(135deg, #8b0000 0%, #8b0000 50%, #a94442 100%);*/
            padding: 20px 40px;
            border-radius: 0 20px 20px 0;
            position: relative;
            z-index: 2;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            align-items: center;
            height: 330px;
            width: 294px;
        }

        .desktop_logo_image {
            /*width: 300px;*/
            height: 190px;
            transition: transform 0.3s ease;
            /*margin-top: 85px;*/
            margin-left: -40px;
        }

        .desktop_logo_image:hover {
            transform: scale(1.05);
        }

        .desktop_nav_section {
            display: flex;
            align-items: center;
            gap: 35px;
            position: relative;
            z-index: 2;
        }

        .desktop_already_registered {
            color: whitesmoke;
            font-size: 17px;
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        .desktop_login_btn {
            background: transparent;
            color: whitesmoke;
            border: 2.5px solid rgba(255, 255, 255, 0.6);
            padding: 14px 40px;
            font-size: 17px;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .desktop_login_btn:hover {
            background: white;
            color: #8b0000;
            border-color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
        }

        .desktop_call_btn {
            background: transparent;
            color: whitesmoke;
            border: 2.5px solid rgba(255, 255, 255, 0.6);
            padding: 14px 35px;
            font-size: 17px;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .desktop_call_btn:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
        }

        .desktop_menu_icon {
            width: 40px;
            height: 40px;
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            cursor: pointer;
            padding: 8px;
            transition: transform 0.3s ease;
        }

        .desktop_menu_icon:hover {
            transform: scale(1.1);
        }

        .desktop_menu_icon span {
            width: 100%;
            height: 3px;
            background: white;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .desktop_menu_icon.desktop_active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .desktop_menu_icon.desktop_active span:nth-child(2) {
            opacity: 0;
        }

        .desktop_menu_icon.desktop_active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .desktop_dropdown_menu {
            position: absolute;
            top: 130px;
            right: 60px;
            background: linear-gradient(135deg, #8b0000 0%, #8b0000 50%, #a94442 100%);
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            padding: 25px 0;
            min-width: 280px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-20px);
            transition: all 0.4s ease;
            z-index: 1000;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .desktop_dropdown_menu.desktop_active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .desktop_menu_item {
            padding: 15px 30px;
            color: white;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .desktop_menu_item:hover {
            background: rgba(200, 90, 90, 0.2);
            border-left-color: #8b0000;
            padding-left: 35px;
        }

        .desktop_menu_item svg {
            width: 20px;
            height: 20px;
            fill: #c85a5a;
        }

        .desktop_menu_divider {
            height: 1px;
            background: rgba(255, 255, 255, 0.1);
            margin: 10px 20px;
        }

        /* ==================== MOBILE STYLES ==================== */
        .mobile_header_wrapper {
            width: 100%;
            background: linear-gradient(135deg, #c85a5a 0%, #8b0000 50%, #8b0000 100%);
            padding: 15px 20px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            position: relative;
            display: none;
            height: 90px;
        }

        .mobile_header_content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: -15px;
        }

        .mobile_logo_section {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .mobile_logo_icon {
            width: 45px;
            height: 45px;
        }

        .mobile_logo_text h1 {
            color: white;
            font-size: 26px;
            font-weight: 300;
            font-family: 'Brush Script MT', 'Lucida Handwriting', cursive;
            letter-spacing: 2px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
            line-height: 1;
        }

        .mobile_logo_text a img {
           height: 90px;
    width: 90px;
        }

        .mobile_tagline {
            color: rgba(255, 255, 255, 0.9);
            font-size: 9px;
            margin-top: 2px;
            font-style: italic;
        }

        .mobile_action_buttons {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .mobile_login_btn {
            background: transparent;
            color: white;
            border: 2px solid white;
            padding: 10px 22px;
            font-size: 15px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .mobile_login_btn:hover {
            background: white;
            color: #c85a5a;
            transform: scale(1.05);
        }

        .mobile_call_btn {
            background: white;
            color: #c85a5a;
            border: 2px solid white;
            padding: 10px 18px;
            font-size: 15px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .mobile_call_btn:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: scale(1.05);
        }

        .mobile_hamburger_icon {
            width: 32px;
            height: 32px;
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            cursor: pointer;
            padding: 5px;
            background: transparent;
            border: none;
        }

        .mobile_hamburger_icon span {
            width: 100%;
            height: 3px;
            background: white;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .mobile_hamburger_icon.mobile_menu_active span:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }

        .mobile_hamburger_icon.mobile_menu_active span:nth-child(2) {
            opacity: 0;
        }

        .mobile_hamburger_icon.mobile_menu_active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .mobile_dropdown_overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 998;
        }

        .mobile_dropdown_overlay.mobile_menu_open {
            opacity: 1;
            visibility: visible;
        }

        .mobile_dropdown_container {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: linear-gradient(135deg, #c85a5a 0%, #8b0000 50%, #8b0000 100%);
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
            padding: 80px 0 30px 0;
            transition: all 0.4s ease;
            z-index: 999;
            overflow-y: auto;
        }

        .mobile_dropdown_container.mobile_menu_open {
            right: 0;
        }

        .mobile_close_btn {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 35px;
            height: 35px;
            background: transparent;
            border: none;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .mobile_close_btn span {
            width: 25px;
            height: 3px;
            background: white;
            position: absolute;
        }

        .mobile_close_btn span:nth-child(1) {
            transform: rotate(45deg);
        }

        .mobile_close_btn span:nth-child(2) {
            transform: rotate(-45deg);
        }

        .mobile_nav_item {
            padding: 18px 30px;
            color: white;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .mobile_nav_item:hover {
            background: rgba(200, 90, 90, 0.2);
            border-left-color: #c85a5a;
            padding-left: 35px;
        }

        .mobile_nav_item svg {
            width: 22px;
            height: 22px;
            fill: #c85a5a;
            flex-shrink: 0;
        }

        .mobile_nav_divider {
            height: 1px;
            background: rgba(255, 255, 255, 0.1);
            margin: 15px 25px;
        }

        /* ==================== RESPONSIVE MEDIA QUERIES ==================== */
        @media (max-width: 767px) {
            .desktop_header,
            .desktop_dropdown_menu {
                display: none !important;
            }

            .mobile_header_wrapper {
                display: block !important;
            }
        }

        @media (min-width: 768px) {
            .mobile_header_wrapper,
            .mobile_dropdown_overlay,
            .mobile_dropdown_container {
                display: none !important;
            }

            .desktop_header {
                display: flex !important;
            }
        }