/* General Reset */
body, h1, h2, h3, p, ul, li {
    margin: .3em;
    padding: 0;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

/* Body Styling */
body {
    line-height: 1.6;
    font-size: 16px;
    color: #333;
    background: #f4f4f4;
    margin: 0;
    padding: 0;
}

/* Header and Navigation */
header {
    background: #aaccaa;
    color: #fff;
    padding: 20px;
}

.menu-bar {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.menu-bar a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.menu-bar a:hover {
    color: #f4d03f;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Sections */
section {
    margin-bottom: 20px;
}

h1 {
    font-size: 1.8em;
    color: #333;
}

h2, h3 {
    margin-top: 20px;
    color: #555;
}

/* Bullet Points */
ul {
    margin-left: 40px; /* Increased indentation */
    padding-left: 20px;
    list-style-type: disc;
}

li {
    margin-bottom: 10px;
    color: #333; /* Ensures bullets match the text color */
}

/* Links */
a {
    color: #000; /* Black links */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #f39c12; /* Slight hover effect to indicate interactivity */
}

/* Contact Links */
.contact-links {
    display: flex;
    gap: 20px;
}

.contact-link {
    display: flex;
    align-items: center;
    color: #000;
    font-size: 1.2em;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

.contact-link:hover {
    transform: scale(1.1);
    color: #f39c12;
}

strong {
    color: #555; /* Softer grey color */
    font-weight: bold; /* Retains emphasis */
}


/* Footer */
footer {
    background: #aaccaa;
    text-align: center;
    padding: 10px;
    color: #000000;
    margin-top: 20px;
}


.menu-bar a {
    margin-right: 15px;
    text-decoration: none;
    color: black;
}

.menu-bar a:hover {
    text-decoration: underline;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
}

ul ul {
    list-style-type: circle;
    margin-left: 30px; /* Increased indentation for nested lists */
}

a {
    color: black; /* Ensure links are black */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

strong {
    color: #555; /* Subtle grey tone for emphasis */
    font-weight: bold;
}

.contact-links {
    display: flex; /* Use flexbox to align items */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically if needed */
    gap: 15px; /* Add spacing between the links */
    margin: 20px 0; /* Optional: Add some margin around the links */
}

.contact-link {
    text-decoration: none; /* Remove underline */
    color: #333; /* Set link color */
    font-size: 18px; /* Adjust font size */
    display: flex; /* Ensure the icon and text align properly */
    align-items: center;
}

.contact-link i {
    margin-right: 8px; /* Add spacing between icon and text */
    font-size: 24px; /* Adjust icon size */
}
