body {
    margin: 0;
    font-family: Arial, sans-serif;
}
#whatsapp-popup {
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    background-color: #25d366;
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 15px;
    display: none;
    z-index: 1000;
}
#whatsapp-popup a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border: #25d366 1px solid;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: #056b27;
    float: right;
    transition: 0.3s;
}
#whatsapp-popup a:hover {
    background-color: #134d82;
    scale: 1.1;
}
#close-popup {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}
header {
    background-color: #ffd600;
    color: #fff;
    padding: 10px 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header img {
    width: 100px;
}
nav {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
nav a {
    color: #fff;
    text-decoration: none;
    padding: 10px;
    border-radius: 5px;
    transition: 0.3s;
    text-align: center;
    text-overflow: ellipsis;
}
nav a.active {
    background-color: #056b27;
}
nav a:hover {
    background-color: #134d82;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    border: 1px solid black;
    padding: 8px;
    text-align: center;
}

th {
    background-color: #f2f2f2;
}

th:first-child {
    border-top-left-radius: 10px;
}

th:last-child {
    border-top-right-radius: 10px;
}

td:first-child {
    border-bottom-left-radius: 10px;
}

td:last-child {
    border-bottom-right-radius: 10px;
}

tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

tfoot {
    background-color: #f2f2f2;
}

tfoot tr {
    background-color: #f2f2f2;
}

tr td {
    border: 1px solid black;
    padding: 8px;
    text-align: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
tfoot tr td {
    border: none;
    text-align: left;
}
.container {
    max-width: 667px;
    margin: 0 auto;
    padding: 0px;
}
.contact-details {
    max-width: 800px;
    margin: 2em auto;
    padding: 1em;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-details ul {
    list-style-type: none;
    padding: 0;
}

.contact-details li {
    margin-bottom: 1em;
}

.contact-details a {
    color: #004aad;
    text-decoration: none;
}

.map {
    max-width: 800px;
    margin: 2em auto;
    text-align: center;
}

footer {
    text-align: center;
    padding: 1em 0;
    background: #333;
    color: #fff;
}
