    @import url('https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        text-decoration: none;
    }
    
    body {
        color: #333;
        line-height: 26px;
        font-family: "Roboto", sans-serif;
    }
    
    body p {
        font-family: "Roboto", sans-serif !important;
        font-size: 16px;
        line-height: 26px;
        font-weight: 400;
    }
    
    body a {
        color: #0c3989;
    }
    
    body a,
    body a:hover,
    body a:active,
    body a:visited {
        text-decoration: none;
    }
    
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: "Playfair", serif;
        font-weight: 700;
    }
    /* Header Styles */
    
    header.site-header {
        background-color: #fff;
        position: sticky;
        top: 0;
        z-index: 1000;
        padding: 15px 30px;
        box-sizing: border-box;
        border-bottom: 1px solid #f2f2f2;
    }
    
    .site-header .navbar.navbar-expand-lg {
        padding: 0;
    }
    
    .navbar-nav.me-auto {
        margin: 0 auto !important;
    }
    
    .site-header .navbar-nav .nav-link {
        font-family: "Playfair", serif;
        color: #222;
        font-size: 18px;
    }
    
    .site-header .navbar-nav li {
        margin: 0;
        padding: 0 15px;
        border-right: 1px solid #ccc;
    }
    
    .site-header .navbar-nav li:last-child {
        border: 0;
    }
    
    .site-header .navbar-nav a.nav-link {
        padding: 0 0 5px;
        font-size: 20px;
        font-weight: 500;
        color: #222;
        position: relative;
    }
    
    .site-header .navbar-nav a.nav-link:after {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background: #0c3989;
        content: "";
        bottom: 0;
        transition: all ease-in-out 0.3s;
        opacity: 0;
    }
    
    .site-header .navbar-nav .nav-link.active:after,
    .site-header .navbar-nav a.nav-link:hover:after {
        opacity: 1;
    }
    
    .login-reg a:hover,
    .site-header .navbar-nav a.nav-link:hover {
        color: #0c3989;
    }
    
    .login-reg a {
        color: #222;
        font-family: "Playfair", serif;
        font-size: 18px;
        letter-spacing: 1px;
        font-weight: 400;
        margin-right: 20px;
    }
    
    .logo img {
        height: 40px;
    }
    
    nav ul {
        display: flex;
    }
    
    nav a {
        font-weight: 600;
        font-size: 0.9rem;
        transition: color 0.3s;
    }
    
    nav a:hover {
        color: #4a74b0;
    }
    
    .user-actions {
        display: flex;
        align-items: center;
    }
    
    .login {
        margin-right: 20px;
        font-weight: 600;
    }
    
    .cart {
        position: relative;
        cursor: pointer;
    }
    
    .cart-count {
        position: absolute;
        top: -8px;
        right: -8px;
        background-color: #1a365d;
        color: white;
        border-radius: 50%;
        width: 18px;
        height: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.7rem;
    }
    /* Hero Section */
    
    .hero {
        background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/image/hero.jpg");
        background-size: cover;
        background-position: center;
        height: 70vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: white;
        padding: 0 20px;
    }
    
    .hero h1 {
        font-size: 60px;
        line-height: 70px;
        margin-bottom: 30px;
        max-width: 1200px;
        font-family: "Playfair", serif;
    }
    
    .search-container {
        display: flex;
        background-color: white;
        border-radius: 30px;
        overflow: hidden;
        width: 100%;
        max-width: 1200px;
    }
    
    .search-container input {
        flex-grow: 2;
        padding: 15px;
        border: none;
        outline: none;
    }
    
    .search-filters {
        display: flex;
    }
    
    .search-filters select {
        padding: 15px;
        border: none;
        border-left: 1px solid #eee;
        outline: none;
        background-color: white;
    }
    
    .search-btn {
        padding: 0 40px;
        background-color: #1e306e;
        color: white;
        border: none;
        cursor: pointer;
        transition: background-color 0.3s;
        font-family: "Playfair", serif;
        font-weight: 500;
        text-transform: uppercase;
    }
    
    .search-btn:hover {
        background-color: #2a4a7f;
    }
    /* Welcome Section */
    
    .welcome {
        text-align: center;
        padding: 60px 20px;
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .welcome h2 {
        color: #1a365d;
        font-size: 40px;
        font-weight: 700;
        margin: 0 0 20px;
    }
    
    .welcome .subtitle {
        font-weight: 700;
        margin-bottom: 15px;
        font-family: "Playfair", serif;
        font-size: 18px;
        line-height: 28px;
    }
    /* Services Section */
    
    .services {
        padding: 20px 0 60px;
        background-color: #f9f9f9;
    }
    
    .services .container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .service-card {
        background-color: white;
        border-radius: 8px;
        padding: 30px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .service-card h3 {
        color: #1a365d;
        margin-bottom: 15px;
    }
    
    .service-card p {
        margin-bottom: 20px;
        flex-grow: 1;
    }
    
    .service-btn {
        display: inline-block;
        padding: 10px 20px;
        background-color: transparent;
        border: 2px solid #1a365d;
        color: #1a365d;
        font-weight: 600;
        border-radius: 4px;
        transition: all 0.3s;
        text-align: center;
        align-self: flex-start;
    }
    
    .service-btn:hover {
        background-color: #1a365d;
        color: white;
    }
    /* Featured Properties */
    
    .featured-properties {
        padding: 60px 20px;
    }
    
    .featured-properties h2 {
        color: #1a365d;
        font-size: 40px;
        line-height: 50px;
        text-align: left;
        margin-bottom: 40px;
    }
    
    .property-card .property-features span {
        color: #1a365d;
    }
    
    .properties-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .property-card {
        border-radius: 8px;
        overflow: hidden;
        transition: transform 0.3s;
        border: 1px solid #ccc;
        margin-bottom: 30px;
    }
    
    .property-card:hover {
        transform: translateY(-5px);
    }
    
    .property-image {
        overflow: hidden;
        max-height: 250px;
    }
    
    .property-image img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        height: auto;
    }
    
    .property-details {
        padding: 30px;
    }
    
    .property-details h3 {
        color: #1a365d;
        margin-bottom: 20px;
        font-size: 20px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .property-features {
        display: flex;
        justify-content: space-between;
    }
    
    .feature {
        display: flex;
        align-items: center;
    }
    
    .feature i {
        margin-right: 7px;
        color: #1a365d;
        font-size: 16px;
    }
    /* Newsletter Section */
    
    .newsletter {
        background-color: #F9F9F9;
        color: rgb(9, 9, 9);
        padding: 40px 20px;
    }
    
    .newsletter .container {
        max-width: 700px;
        text-align: center;
        background: #fff;
        padding: 20px;
    }
    
    .newsletter h3 {
        margin-bottom: 20px;
        font-size: 18px;
    }
    
    .newsletter-form {
        display: flex;
        overflow: hidden;
        border-radius: 5px;
        max-width: 100%;
        margin: 0 auto;
        border: 1px solid #ddd;
    }
    
    .newsletter-form input {
        flex-grow: 1;
        padding: 15px;
        outline: none;
        background: none;
        border: 0;
    }
    
    .subscribe-btn {
        padding: 0 20px;
        color: #fff;
        border: none;
        cursor: pointer;
        background: #1a365d;
    }
    /* Footer */
    
    footer {
        background-color: #1a365d;
        color: white;
        padding: 60px 20px 30px;
        position: relative;
    }
    
    .footer-columns {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-column h4 {
        margin-bottom: 15px;
        font-size: 1.1rem;
    }
    
    .footer-column ul li {
        margin-bottom: 10px;
    }
    
    .footer-column a {
        color: #ddd;
        transition: color 0.3s;
    }
    
    .footer-column a:hover {
        color: white;
    }
    
    .social-icons {
        display: flex;
        gap: 15px;
        margin-top: 15px;
    }
    
    .social-icons a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.1);
        transition: background-color 0.3s;
    }
    
    .social-icons a:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }
    /* Cookie Notice */
    
    .cookie-notice {
        background-color: #fff;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        display: none;
    }
    
    .cookie-notice p {
        color: #333;
        margin-right: 20px;
    }
    
    .cookie-notice a {
        color: #1a365d;
        text-decoration: underline;
    }
    
    .cookie-buttons {
        display: flex;
        gap: 10px;
    }
    
    .decline-btn,
    .agree-btn {
        padding: 8px 16px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }
    
    .decline-btn {
        background-color: transparent;
        border: 1px solid #ccc;
    }
    
    .agree-btn {
        background-color: #1a365d;
        color: white;
    }
    /* Chat Icon */
    
    .chat-icon {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background-color: #e74c3c;
        color: white;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        transition: transform 0.3s;
        z-index: 900;
    }
    
    .chat-icon:hover {
        transform: scale(1.1);
    }
    
    .ps-section__features {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .features {
        padding: 0 15px 0;
        background: #fff;
    }
    
    .features h4 {
        font-size: 28px;
        font-weight: 700;
        margin: 0 0 15px;
        color: #0c3989;
    }
    
    .features p {
        font-size: 18px;
        margin: 0;
    }
    
    .swiper-slide {
        text-align: center;
        box-sizing: border-box;
    }
    
    .img-box-inner {
        position: relative;
        overflow: hidden;
        width: 100%;
        height: auto;
        border-radius: 3px;
    }
    
    .img-box-inner::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
        width: 100%;
        height: 100%;
    }
    
    .img-btn {
        position: absolute;
        z-index: 99;
        left: 0;
        right: 0;
        bottom: 30px;
        color: #fff;
        border: 2px solid #fff;
        min-width: 150px;
        margin: auto;
        border-radius: 10px;
        padding: 10px 20px;
        transition: all ease-in-out 0.3s;
        width: fit-content;
    }
    
    .img-btn:hover {
        background: #fff;
        color: #000;
    }
    
    .link-slider .swiper-button-next,
    .link-slider .swiper-button-prev {
        width: 40px;
        height: 40px;
        background: #fff;
        border-radius: 100%;
        margin: 0;
    }
    
    .link-slider .swiper-button-next:after,
    .link-slider .swiper-button-prev:after {
        font-size: 16px;
    }
    
    .swiper-pagination {
        display: none;
    }
    
    .footer-column ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    .footer-column p {
        font-size: 16px;
        margin: 0;
    }
    
    .slide-thumb {
        padding: 10px 5px;
        overflow: hidden;
        max-height: 120px;
    }
    
    .slide-img img,
    .slide-thumb img {
        width: 100%;
        object-fit: cover;
    }
    
    .slide-img {
        max-height: 600px;
        overflow: hidden;
        border-radius: 10px;
    }
    
    .pro-details-slider {
        width: 100%;
        padding: 60px 0 30px;
    }
    
    .pro-details-slider .slick-arrow {
        background-color: #fff;
        font-size: 0;
        width: 30px;
        height: 30px;
        text-align: center;
        line-height: 30px;
        display: block;
        border-radius: 100%;
        border: 1px solid #ccc
    }
    
    .pro-details-slider .slick-prev.slick-arrow {
        position: absolute;
        left: 2px;
        top: 5px;
        bottom: 0;
        margin: auto;
        z-index: 99;
    }
    
    .pro-details-slider .slick-next.slick-arrow {
        position: absolute;
        right: 2px;
        top: 5px;
        bottom: 0;
        margin: auto;
        z-index: 99;
    }
    
    .pro-details-slider .slick-prev.slick-arrow:after {
        content: "\f053";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 15px;
    }
    
    .pro-details-slider .slick-next.slick-arrow:after {
        content: "\f054";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 15px;
    }
    
    #listView h5.card-title a {
        color: #0c3989;
        font-size: 28px;
        font-weight: 700;
    }
    
    .pro-types ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    .pro-types ul li {
        margin-bottom: 15px;
    }
    
    .pro-types ul li span {
        display: block;
        color: rgba(0, 0, 0, 0.3);
        font-size: 14px;
    }
    
    .pro-types ul li strong {
        display: block;
        color: #0c3989;
        font-size: 15px;
        font-weight: 600;
    }
    
    .list-pro-thumb a {
        display: block;
    }
    
    .list-pro-thumb img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }
    
    .card-body {
        position: relative;
    }
    
    .lv-price {
        position: absolute;
        right: 30px;
        top: 10px;
        color: #669900;
        font-family: "Roboto", serif;
        font-size: 28px;
        font-weight: 500;
    }
    
    #gridView .card-title {
        margin-bottom: 15px;
    }
    
    #gridView .card-title a {
        color: #0c3989;
        font-size: 18px;
        font-weight: 700;
        line-height: 28px;
    }
    
    #listView h5.card-title a:hover,
    #gridView .card-title a:hover {
        color: #000;
    }
    
    .property-features i,
    .bottom-bar i {
        margin-right: 5px;
    }
    
    .property-features span,
    .bottom-bar span {
        margin-right: 15px;
    }
    
    .property-features span:last-child,
    .bottom-bar span:last-child {
        margin-right: 0;
    }
    
    .pro-title-content h2 {
        font-size: 48px;
        font-weight: 700;
        color: #0c3989;
        line-height: 50px;
        margin: 0 0 20px;
    }
    
    .pro-textarea,
    .pro-textarea P {
        font-size: 15px;
        line-height: 25px;
        color: #222;
    }
    
    .pro-sidebar {
        border-radius: 10px;
        border: 1px solid #ccc;
        padding: 20px;
    }
    
    .pro-sidebar .input-group {
        border-radius: 5px;
        overflow: hidden;
        margin-bottom: 10px;
        border: 1px solid #0e528c33;
        padding-left: 50px;
    }
    
    .pro-sidebar .input-group span {
        position: absolute;
        left: 0;
        z-index: 9;
        background-color: #0e528c1a;
        border-right: 1px solid #0e528c33;
        color: #0c3989;
        width: 40px;
        line-height: 44px;
        text-align: center;
        height: 100%;
    }
    
    .pro-sidebar .input-group .form-control {
        border: 0;
        height: 44px;
        line-height: 44px;
        font-size: 14px;
        padding: 0;
    }
    
    #bookbtn.bookbtn {
        background: #0c3989;
        color: #fff;
        border: 0;
        width: 100%;
        height: 50px;
        line-height: 50px;
        border-radius: 10px;
        font-size: 18px;
        text-transform: uppercase;
        font-weight: 600;
        transition: all ease-in-out 0.3s;
    }
    
    #bookbtn.bookbtn:hover {
        background: #000;
        color: #fff;
    }
    
    .amenities-section {
        padding: 40px 0 0;
        overflow: hidden;
        width: 100%;
    }
    
    .stitle {
        color: #0c3989;
        font-size: 32px;
        margin: 0 0 20px;
    }
    
    .amenities-section i {
        color: #0c3989;
    }
    
    .House-rules ul {
        margin: 0 0 20px;
        padding: 0;
        list-style: none;
    }
    
    .House-rules ul li,
    .House-rules p {
        font-size: 16px;
        line-height: 26px;
    }
    
    .youmayalsolike {
        padding: 60px 0;
    }
    
    .youmayalsolike .slick-arrow {
        background-color: #fff;
        font-size: 0;
        width: 30px;
        height: 30px;
        text-align: center;
        line-height: 30px;
        display: block;
        border-radius: 100%;
        border: 1px solid #ccc
    }
    
    .youmayalsolike .slick-prev.slick-arrow {
        position: absolute;
        left: 2px;
        top: 5px;
        bottom: 0;
        margin: auto;
        z-index: 99;
    }
    
    .youmayalsolike .slick-next.slick-arrow {
        position: absolute;
        right: 2px;
        top: 5px;
        bottom: 0;
        margin: auto;
        z-index: 99;
    }
    
    .youmayalsolike .slick-prev.slick-arrow:after {
        content: "\f053";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 15px;
    }
    
    .youmayalsolike .slick-next.slick-arrow:after {
        content: "\f054";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 15px;
    }
    
    .rpro {
        padding: 0 15px;
    }
    
    .pro-sidebar .lv-price {
        position: relative;
        right: auto;
        top: auto;
        color: #669900;
        font-family: "Roboto", serif;
        font-size: 28px;
        font-weight: 500;
        margin: 0 0 15px;
    }
    
    .checkout {
        padding: 80px 0;
    }
    
    .checkout-sidebar {
        padding: 25px;
        margin-bottom: 25px;
    }
    
    .checkout-sidebar h5 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .d-flex.align-items-center.order-top {
        border-bottom: 1px solid #ccc;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    
    .summery ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    .summery ul li {
        font-family: "Roboto", sans-serif;
        overflow: hidden;
        font-size: 16px;
        padding: 7px 0;
    }
    
    .summery ul li strong {
        font-weight: 600;
    }
    
    .summery ul li span {
        float: right;
    }
    
    .summery ul .total-amount {
        border-top: 1px solid #ccc;
        margin-top: 15px;
        font-size: 20px;
        font-weight: 600;
    }
    
    .secure-card {
        padding: 25px;
        border: 1px solid #ccc;
        border-radius: 10px;
        margin-bottom: 20px;
    }
    
    .secure-card h6 {
        font-size: 24px;
    }
    
    .secure-card p {
        font-size: 16px;
        font-weight: 400;
    }
    
    .order-top p {
        font-size: 16px;
        margin: 0;
        line-height: 24px;
    }
    
    .date-pets-guest ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    .date-pets-guest ul li {
        font-size: 16px;
        line-height: 26px;
        font-family: "Roboto", sans-serif;
    }
    
    ul.house-rules {
        margin: 0;
        padding: 0;
        list-style: none;
        line-height: 26px;
        overflow: hidden;
    }
    
    ul.house-rules li {
        width: 50%;
        float: left;
        padding: 7px 0;
        font-size: 16px;
        font-family: "Roboto", sans-serif;
    }
    
    ul.house-rules li i {
        margin-right: 5px;
        color: #0c3989;
        display: inline-block;
        width: 25px;
    }
    
    .special h5,
    .order-other-info h5 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .order-other-info p {
        font-size: 16px;
        font-weight: 400;
        font-family: "Roboto", sans-serif;
    }
    
    .special {
        padding: 30px 0;
    }
    
    .special a {
        color: #0c3989;
    }
    
    .booknow,
    .special button.btn.btn-outline-primary {
        width: 100%;
        background: #0c3989;
        height: 50px;
        line-height: 50px;
        border: 0;
        color: #fff !important;
        padding: 0;
        font-size: 18px;
        text-transform: uppercase;
        font-weight: 500;
        font-family: "Roboto", sans-serif;
        display: block;
        border-radius: 5px;
        text-align: center;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
    
    .font {
        font-family: "Playfair", serif;
        font-family: "Roboto", sans-serif;
    }
    /* Responsive Styles */
    
    @media (max-width: 768px) {
        header .container {
            flex-direction: column;
        }
        .user-actions {
            margin-top: 10px;
        }
        .hero h1 {
            font-size: 1.8rem;
        }
        .search-container {
            flex-direction: column;
        }
        .search-filters {
            flex-direction: column;
        }
        .search-filters select {
            border-left: none;
            border-top: 1px solid #eee;
        }
        .cookie-notice {
            flex-direction: column;
            text-align: center;
        }
        .cookie-notice p {
            margin-right: 0;
            margin-bottom: 15px;
        }
    }
    
    @media (min-width: 768px) and (max-width: 1400px) {
        .login-reg a,
        .dropdown-item,
        .site-header .navbar-nav a.nav-link {
            font-size: 15px;
        }
        .site-header .navbar-nav li {
            margin: 0;
            padding: 0 10px;
            border-right: 1px solid #ccc;
        }
        .login-reg a {
            margin-right: 10px;
        }
        .hero h1 {
            font-size: 40px;
            line-height: 50px;
            margin-bottom: 30px;
            max-width: 1200px;
            font-family: "Playfair", serif;
        }
    }