/* Header Div Styling */
.header {
    background-color: #4CAF50; /* Primary accent color */
    color: #fff; /* White text for contrast */
    padding: 20px; /* Spacing inside the header */
    text-align: center; /* Center-align text */
    text-color: #fff
    border-radius: 10px; /* Smooth rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    font-size: 1.5rem; /* Adjust font size for emphasis */
    font-weight: bold; /* Bold text for importance */
    letter-spacing: 1px; /* Add spacing between letters */
    margin-bottom: 20px; /* Add spacing below the header */
}

/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

/* Container for centering content */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Map Image */
.map-image {
    display: block;
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    border: 2px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Table Styles */
table {
    width: 100%;
    max-width: 600px; /* Match the image's max-width */
    margin: 20px auto; /* Center the table */
    border-collapse: collapse;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

table th, table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #ddd;
}

table th {
    background-color: #4CAF50;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
}

table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.feature-list {
    background-color: darkgray;
    display: table;
    width: 100%;
    height: 200px;
    border: 1px solid #ddd; /* Optional styling */
    text-align: center; /* Center text horizontally */
}

/* Unordered List Styles */
ul {
    text-align: center;
    list-style-type: disc;
    padding-left: 20px;
    margin: 20px 0;
    list-style-type: none;
}

ul li {
    margin-bottom: 10px;
}

/* Header */
h1, h2, h3 {
    color: #FFFFFF;
}

/* Links */
a {
    color: #4CAF50;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
