/* Global Variables */
:root {
    --text-color: #333; /* Default text color */
    --heading-color: #222; /* Default heading color */
    --background-color: #c3d4e0; /* Default background color */
    --link-color: #3a6ea5; /* Default link color */
    --link-hover-color: #2a5a8a; /* Link hover color */
}

/* General Body Styling */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--heading-color);
    margin-bottom: 1rem;
    font-weight: 600; /* Ensure headings are bold */
}

/* Links */
a {
    color: var(--link-color); /* Default link color */
    text-decoration: none; /* Remove underline */
}

a:hover {
    color: var(--link-hover-color); /* Change color on hover */
    text-decoration: underline; /* Optional: Add underline on hover */
}

/* Lists */
ul {
    list-style: none; /* Remove default bullets */
    padding: 0;
    margin: 0;
}

ul li {
    margin-bottom: 10px; /* Add spacing between list items */
    position: relative; /* For custom bullet styling */
}

ul li::before {
    content: '\2022'; /* Unicode for a bullet */
    color: var(--link-color); /* Use link color for bullets */
    font-weight: bold;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(2px); /* Adjust vertical alignment */
}

ul li {
    padding-left: 20px; /* Add padding to align text with bullets */
}

/* General Section Styling */
section {
    padding: 40px 20px; /* Add padding to all sections */
    margin: 0 auto; /* Center the content */
    max-width: 1200px; /* Limit the width of the content */
    box-sizing: border-box; /* Ensure padding is included in the width */
}

section h2 {
    font-size: 2rem; /* Adjust heading size for sections */
    margin-bottom: 20px; /* Add spacing below the heading */
    color: #3a6ea5; /* Optional: Add a consistent color for section headings */
}

section ul {
    list-style: disc; /* Use bullets for unordered lists */
    padding-left: 20px; /* Add left padding for bullets */
}

section ul li {
    margin-bottom: 10px; /* Add spacing between list items */
}
/* Map Section */
.map {
    margin: 0; /* Remove any margins */
    padding: 0; /* Remove any padding */
    width: 100vw; /* Ensure the map spans the full viewport width */
    max-width: none; /* Remove the max-width constraint */
    position: relative; /* Ensure proper positioning */
    left: 0; /* Align to the left edge */
}

.map iframe {
    display: block; /* Remove inline spacing */
    width: 100%; /* Ensure the iframe spans the full width */
    height: 220px; /* Set the height */
    border: none; /* Remove any borders */
}