.elementor-616 .elementor-element.elementor-element-4d55c2d{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS */body {
    font-family: 'Inter', sans-serif;
    color: #333; /* Default body text color */
    line-height: 1.6;
}
.container {
    max-width: 1024px;
}
h1, h2, h3 {
    color: #1a202c; /* Default heading color */
    font-weight: 700;
}
a {
    color: #2563eb; /* Default link color */
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* Styling for location buttons (btn-primary) */
.btn-primary {
    background: linear-gradient(to right, #f68323, #e0741c) !important; /* Gradient from #f68323 to a slightly darker shade */
    color: white !important; /* FORCED WHITE FONT COLOR FOR LOCATION BUTTONS */
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background 0.3s ease;
}
.btn-primary:hover {
    background: linear-gradient(to right, #e0741c, #c96517) !important; /* Darker gradient on hover */
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
}
@media (min-width: 640px) { /* sm breakpoint */
    .location-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 768px) { /* md breakpoint */
    .location-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 1024px) { /* lg breakpoint */
    .location-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Custom class for the dark blue background section */
.bg-primary-dark-blue {
    background-color: #004768 !important; /* FORCED DARK BLUE BACKGROUND */
}

/* Styling for the title within the dark blue section */
.bg-primary-dark-blue h2 {
    color: white !important; /* FORCED WHITE FONT COLOR FOR TITLE */
}

/* Styling for the buttons within the dark blue section */
.btn-secondary-dark-blue {
    background-color: white !important;
    color: #004768 !important; /* FORCED DARK BLUE FONT COLOR FOR THESE BUTTONS */
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
.btn-secondary-dark-blue:hover {
    background-color: #f3f4f6 !important; /* Lighter white on hover */
}/* End custom CSS */