:root {
    --primary-color: #005A99;
    --secondary-color: #C7512E;
    --accent1-color: #004A80;
    --header-footer-bg: #094c7b;
    --text-on-dark: #ffffff;
    --heading-font: "Times New Roman", Georgia, serif;
    --body-font: Arial, Helvetica, sans-serif;
    --max-width: 900px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: var(--header-footer-bg);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header img {
    width: 80px;
    height: auto;
}

nav a {
    text-decoration: none;
    color: var(--text-on-dark);

    font-weight: bold;
    padding: 0 15px;
}

nav a:hover {
    text-decoration: underline;
}

main {
    max-width: var(--max-width);
    margin: 0 auto;
    background-color: #fff;
    display: block;
}

footer {
    background-color: var(--header-footer-bg);
    max-width: var(--max-width);
    margin: 20px auto 0;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #000;

}

footer p {
    margin: 0;
    color: var(--text-on-dark);
    font-size: 0.9rem;
}

.socialmedia {
    display: flex;
    gap: 15px;
}

.socialmedia img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.contact-header-info {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--primary-color);
    color: var(--text-on-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 20px 40px;
    align-items: start;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 1px solid #ccc;
}

.form-container h2 {
    margin-bottom: 20px;
    font-family: var(--heading-font);
}

.form-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

fieldset {
    border: 1px solid #ccc;
    padding: 10px;
    margin: 15px 0;
}

fieldset label {
    display: block;
    margin-bottom: 8px;
}

.submit-btn {
    background-color: #eee;
    color: #333;
    border: 1px solid #999;
    padding: 12px;
    width: 100%;
    font-weight: bold;
    cursor: pointer;
}

/* Team Section */
.team-section {
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    margin: 40px 20px;
    padding: 40px 20px;
    text-align: center;
}

.employee-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.employee-gallery figure {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.employee-gallery img {
    width: 120px;
    height: 120px;
    background-color: #ccc;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

@media (max-width: 768px) {

    .contact-grid,
    .employee-gallery {
        grid-template-columns: 1fr;
    }

    header,
    footer {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}
