.elementor-121 .elementor-element.elementor-element-c806e10{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-121 .elementor-element.elementor-element-3d479d65{--display:flex;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-a661e87 *//* Reset */


body {
    font-family: Arial, sans-serif;
}

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 6%;
    background: #f3f3f3;
    position: relative;
}

/* Logo */
.logo {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-left: 5px;
}

/* Nav */
#nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

#nav-menu a {
 
    text-decoration: none;
    color: #555;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

#nav-menu a:hover {
    color: #007bff;
 
}

/* Contact Button */
.contact-agent-btn {
    padding: 10px 20px;
    background: #1976d2;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: 0.3s;
}

.contact-agent-btn:hover {
    background: #125aa5;
}

/* Hamburger */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    margin-right: 5px;
}

/* ========================= */
/* Responsive */
/* ========================= */
@media (max-width: 1000px) {
    .navbar {
        width: 100%;
        padding: 12px 5%; /* Percentage padding handles different screen widths better */
        justify-content: space-between;
        position: sticky; /* Keep it at the top while scrolling */
        top: 0;
        z-index: 1000;
        background: #ffffff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: #1976d2;
        color: #ffffff;
        border-radius: 6px;
        font-size: 20px;
        cursor: pointer;
        transition: transform 0.2s ease, background 0.3s ease;
    }

    .menu-toggle:active {
        transform: scale(0.9); /* Visual feedback when tapped */
        background: #1565c0;
    }

    #nav-menu {
        position: absolute;
        top: 100%; /* Sits exactly below the navbar */
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: stretch; /* Makes links full width for easier tapping */
        padding: 10px 0;
        gap: 0; /* Use padding on items instead of gap for better hitboxes */
        
        /* Smooth Animation */
        display: flex; 
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease-in-out;
        
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        border-top: 1px solid #f0f0f0;
    }

    #nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Style the links inside for better mobile UX */
    #nav-menu a {
        padding: 15px 5%;
        width: 100%;
        border-bottom: 1px solid #f9f9f9;
        text-align: left;
    }

    .contact-agent-btn {
        display: none; /* Consider keeping this as a small icon instead! */
    }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-3d479d65 */body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 0; background: #f9f9f9; }
        .container { max-width: 900px; margin: 50px auto; padding: 40px; background: #fff; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
        .back-link { text-decoration: none; color: #007bff; font-weight: bold; display: inline-block; margin-bottom: 20px; }
        h1 { font-size: 36px; color: #222; margin-bottom: 10px; }
        .hero-img { width: 100%; height: 500px; background: #eee; border-radius: 10px; margin: 20px 0; object-fit: cover; }
        .content { font-size: 18px; color: #555; }
        .value-item { margin-bottom: 25px; }
        .value-item strong { color: #222; font-size: 20px; display: block; margin-bottom: 5px; }

        body {
    background-color: #f8f9fa;
    color: #222;
    min-height: 100vh;
}

/* ================= NAVBAR ================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.logo {
    font-size: 1.6em;
    font-weight: bold;
    color: #222;
}

.navbar nav a {
    color: #555;
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.95em;
    transition: color 0.3s;
}

.navbar nav a:hover,
.navbar nav a.active {
    color: #007bff;
}

.contact-agent-btn {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}/* End custom CSS */