body {
    font-family: Arial, sans-serif;
    background-color: #AA5A41; /* Rust background */
    margin: 0;
    padding: 0;
}
h1 {
    font-size: 60px;
    font-weight: bold;
    color: white;
}
nav {
    background-color: #AA5A41; /* Assuming a dark rust background for the navbar */
    display: flex;
    justify-content: space-between;
    align-items: center;}
.logo span {
        font-size: 20px;
        font-weight: normal;
        margin-left: 20px; /* Provides some padding from the edge of the browser */
        color: white;
    }
nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    padding: 0;
    margin: 0;
    background-color: #8C4935; /* Rust for the navbar */
}
nav ul li {
    padding: 20px;
    color: white;
}
nav ul li a {
    text-decoration: none;
    color: white; /* Setting text color to white */
    font-weight: bold; /* Optional: Makes the text bold */
}
.banner {
    background-image: url('image1e.jpg');
    color: white;
    text-align: center;
    padding: 200px 0;
    background-color: #AA5A41; /* Dark rust */ 
}
.latest-news h2 {
    color: white; /* Sets the text color to white */
    background-color: #AA5A41; /* Dark blue background similar to the navbar */
    padding: 30px 60px; /* Adds some padding around the text */
    margin: 0; /* Removes default margin */
    text-align: left; 
    font-weight: normal;
    font-size: 30px;
}
.latest-news table {
    width: 90%; /* Sets the table width to fill the container */
    margin-top: 20px; /* Adds space between the heading and the table */
    margin-left: 60px;
    border-collapse: collapse; /* Eliminates the space between borders */
}
.news-item {
    background-color: #AA5A41; /* White background for news items */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Adds a slight shadow for depth */
    padding: 10px; /* Padding inside each cell */
    text-align: left; /* Aligns the content to the center of the cell */
    font-size: 15px;
    color: white; /* Setting text color to white */
    border: 1px solid white; /* Adds a black border to each cell */
}
.news-item img {
    width: 100%; /* Reduces image width to 25% of the parent container */
    height: auto; /* Maintains the aspect ratio of the image */
    display: block; /* Ensures the image does not have extra space around it */
    margin: 0 auto; /* Centers the image horizontally within the cell */
}
.about-us-header {
    display: flex;
    justify-content: left;
    padding: 20px 0;
    background-color: white; /* Dark rust */
    color: #AA5A41; /* Sets the text color to white */
}
.about-us-header h2 {
    color: #AA5A41; /* Sets the text color to white */
    background-color: white; /* Dark blue background similar to the navbar */
    padding: 120px 60px 30px; /* Adds some padding around the text */
    margin: 0; /* Removes default margin */
    text-align: left; 
    font-weight: normal;
    font-size: 30px;
}
.about-us {
    display: flex;
    justify-content: left;
    padding: 0px 0 150px;
    background-color: white; /* Dark rust */
    color: #AA5A41; /* Sets the text color to white */
}
.about-us table {
    width: 90%; /* Sets the table width to fill the container */
    margin-top: 0px; /* Adds space between the heading and the table */
    margin-left: 60px;
    border-collapse: collapse; /* Eliminates the space between borders */
}
.about-item {
    background-color: white; /* White background for news items */
    /*box-shadow: 0 2px 5px rgba(0,0,0,0.1);     Adds a slight shadow for depth */
    padding: 10px; /* Padding inside each cell */
    text-align: left; /* Aligns the content to the center of the cell */
    font-size: 15px;
    color: AA5A41; /* Setting text color to white */
    border: 1px solid white; /* Adds a black border to each cell */
}
.about-item a {
    text-decoration: none;
    color: #AA5A41; /* Setting text color */
    font-weight: normal; /* Optional: Makes the text bold or not */
}
.email-button {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px 0;
    background-color: #005a9c; /* Dark blue, adjust the color to fit your design */
    color: white; /* Text color */
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px; /* Rounded corners for the button */
    cursor: pointer; /* Cursor changes to a pointer to indicate it's clickable */
}
.email-button:hover {
    background-color: #003f6f; /* Slightly darker shade on hover for visual feedback */
}
.contact-item {
    background-color: white; /* White background for news items */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Adds a slight shadow for depth */
    padding: 10px; /* Padding inside each cell */
    text-align: left; /* Aligns the content to the center of the cell */
    font-size: 15px;
    color: AA5A41; /* Setting text color to white */
    border: 1px solid white; /* Adds a black border to each cell */
}
.contact-item a {
    text-decoration: none;
    color: white; /* Setting text color, assunes a dark background button */
    font-weight: normal; /* Optional: Makes the text bold or not */
}