:root {

    --site-max-width: 1364px;
    --container-padding: 24px;

    --font-heading: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    --font-body: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;

    --color-primary: #009BB4;
    --color-primary-hover: #009cb4ce;
    --colormuted: #ECEBEC;
    --color-text: #000000;

}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    height: 100%;
}

body {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    font-family: var(--font-body, "Segoe UI", system-ui, sans-serif);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--colormuted);
    overflow-x: hidden;
}

.pg-header {
    width: 100%;
    align-content: end;
    /* border: 1px solid red; */
    height: 414px;
    padding: 0 10px;
}

.inner {
    max-width: var(--site-max-width);
    margin: auto;
    /* border: 1px solid red; */
}

.pg-header h1 {
    color: var(--color-text);
    font-family: var(--font-heading);
    font-weight: 900;
    font-style: italic;
    font-size: 68px;
    letter-spacing: -2px;
    text-transform: uppercase;
    line-height: 48px;
    margin-bottom: 24px;

}

.pg-header-para {
    width: 100%;
    align-content: center;
    /* border: 1px solid red; */
    height: 173px;
    padding: 0 10px;
}

.pg-para-inner {
    max-width: var(--site-max-width);
    /* border: 1px solid red; */
    margin: auto;
}

.pg-header-para p {
    color: var(--color-text);
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-body);
    width: 60%;
    margin-top: 14px;

}

section.map-section {
    width: 100%;
    height: 500px;
    position: relative;
    margin-top: 140px;
}

#map {
    width: 100%;
    height: 100%;
}

/* Optional: style for a cleaner search bar look */
.leaflet-control-geocoder-form input {
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    width: 180px;
}



@media (max-width: 1024px) {
    .pg-header {
        height: 346px;
    }

}

/* For small tablets or phablets (max-width 768px) */
@media (max-width: 768px) {
    .pg-header {
       height: 346px;
    }



    .pg-header h1 {
        font-size: 62px;
    }

}

/* For small mobiles (max-width 480px) */
@media (max-width: 480px) {
    .pg-header {
        height: 346px;
    }

    .pg-header-para p,
    .main-card .card-btm-para p {
        width: 100%;
    }

    .pg-header h1 {
        font-size: 52px;
    }

}