/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

/* Logo Container */
.logo-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Adds spacing between the images */
    justify-content: space-between; /* Ensures images are spaced evenly */
    padding: 20px;
}

.logo-container img {
    width: calc((100% - 80px) / 5); /* Divides the available space into 3 equal parts */
    height: auto; /* Maintains aspect ratio */
    display: block;
    object-fit: contain; /* Ensures the entire image fits within the space without distortion */
}

/* Header */
header {
    background-color: #2d6a4f;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

header img {
    max-width: 300px;
    height: auto;
}

header p {
    margin-top: 10px;
}

header nav ul {
    list-style: none;
    padding: 10px 0;
}

header nav ul li {
    display: inline;
    margin: 0 15px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Sections */
.section {
    padding: 40px 0;
    border-bottom: 1px solid #ccc;
}

.section h2 {
    color: #2d6a4f;
    font-size: 1.8em;
    margin-bottom: 20px;
}

/* Contact Form */
form label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form button {
    padding: 10px 20px;
    background-color: #2d6a4f;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
}

form button:hover {
    background-color: #40916c;
}

/* Footer */
footer {
    background-color: #2d6a4f;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

/* Media Queries */
@media (max-width: 768px) {
    .logo-container img {
        width: calc((100% - 30px) / 3); /* Show 3 logos per row on tablets */
    }

    header nav ul li {
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .logo-container img {
        width: calc((100% - 20px) / 2); /* Show 2 logos per row  on small screens */
    }

    header nav ul {
        text-align: center;
    }

    header nav ul li {
        display: block;
        margin: 10px 0;
    }
}                           
