* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Newsreader', serif;
}

:root {
    --primary-color: #21618c;
    --background-color: #f9f9f9;
    --text-color: #333;
    --footer-text-color: #fff;
}

body {
    line-height: 1.6;
    background-color: var(--background-color);
    color: var(--text-color);
}

header {
    background: var(--primary-color);
    color: var(--footer-text-color);
    padding: 10px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2rem;
}

.container {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2 {
    color: var(--primary-color);
    margin-top: 20px;
}

p, li {
    margin: 10px 0;
}

ul {
    margin: 10px 0 20px 20px;
}

footer {
    text-align: center;
    padding: 20px 0;
    background: var(--primary-color);
    color: var(--footer-text-color);
    margin-top: 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.contact {
    font-weight: bold;
}

@media (max-width: 600px) {
    .container {
        padding: 15px;
    }

    header h1 {
        font-size: 1.5rem;
    }
}






/* ---------------------------------------- Footer Section -------------------------------------------------------- */

#footerSection {
    padding: 20px 5%;
    background-color: var(--primary-color); /* Dark background for contrast */
    color: #ffffff; /* White text */
    text-align: center;
    box-sizing: border-box;
    position: relative;
}

#footerSection .footerContent {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 1rem;
}

#footerSection p {
    margin: 5px 0;
}

#footerSection p a {
    color: #ffffff;
    text-decoration: none;
}

#footerSection p a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
    #footerSection {
        padding: 20px 5%;
    }

    #footerSection .footerContent {
        font-size: 0.9rem;
    }
}
