* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 20px;
}

header h1 {
    font-size: 2.5em;
}

header p {
    font-size: 1.2em;
}

section {
    padding: 20px;
    margin: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

ul {
    list-style: none;
    padding-left: 20px;
}

ul li {
    font-size: 1.2em;
    margin-bottom: 8px;
}

#contact img {
    width: 150px;
    height: 150px;
    display: block;
    margin-top: 10px;
}

footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    width: 100%;
    bottom: 0;
}

footer p {
    font-size: 1em;
}

/* Add this to the existing styles.css */

a {
    color: #FFCC00; /* Set the link color to a more visible color */
    text-decoration: none; /* Remove underline from the link */
}

a:hover {
    color: #FF9900; /* Change the color when hovering over the link */
    text-decoration: underline; /* Add underline on hover */
}

header a {
    color: #FFCC00; /* Ensure the header link is also visible */
}

#contact img {
    width: 200px;  /* Set a fixed width */
    height: auto; /* Set a fixed height */
    display: block;
    margin-top: 10px;
    object-fit: contain;  /* Ensures the image scales without distorting */
}
