/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #F8F9FA;
}

.header-top {
    background-color: #000;
    height: 10px;
}

/* Header styles */
header {
    background-color: #F8F9FA; /* Light gray background */
    text-align: center; /* Center the header content */
    position: relative; /* Ensure relative positioning for children */
}

.header-content {
    position: relative;
    top: -10px; /* Adjust to align with the bottom of header-top */
}

.logo {
    width: 290px; /* Adjust the width of the logo */
    height: auto;
    display: inline-block; /* Ensure inline-block to align properly */
    vertical-align: middle; /* Align vertically in the middle */
    margin-right: 20px; /* Adjust the margin between logo and award image */
    margin-top: -10px; /* Ensure some space between header-top and logo */
}

.award {
    width: 50px; /* Adjust the width of the award image */
    height: auto;
    display: inline-block; /* Ensure inline-block to align properly */
    vertical-align: middle; /* Align vertically in the middle */
    margin-left: 20px; /* Adjust the margin between logo and award image */
}

/* Content section */
.content {
    padding: 20px;
}

.content h1 {
    color: #b0267e;
    font-size: 2em; /* Adjust font size as needed */
    margin-left: 20px; /* Add some left margin */
    text-align: left; /* Align the H1 text to the left */
}

.content h1 span {
    display: block;
}

.content p {
    font-size: 1.1em;
    text-align: left; /* Ensure paragraphs are left-aligned */
    margin: 20px; /* Add margin to the paragraphs */
}

/* Team section */
.team {
    margin: 20px 0;
    text-align: center; /* Center-align content */
}

.team h2 {
    color: #000;
    font-size: 1.5em; /* Adjust font size as needed */
}

.team img.team-image {
    max-width: 90%; /* Ensure the image does not exceed its container */
    width: 100%; /* Set width to 50% of the container */
    height: auto; /* Maintain aspect ratio */
    margin-top: 10px; /* Optional margin for spacing */
}

/* Footer styles */
footer {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
}

.footer-top {
    display: flex;
    justify-content: space-between; /* Space between the logos and links */
    align-items: center;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    padding: 20px;
    border-bottom: 1px solid #ddd; /* Add a border to separate top and bottom sections */
}

.certification-logos {
    display: flex;
    align-items: center;
    margin-bottom: 10px; /* Space below the logos on smaller screens */
}

.certification-logos img {
    max-height: 50px;
    margin-right: 10px;
}

.footer-links {
    display: flex;
    flex-direction: column; /* Arrange links in a column */
    align-items: flex-start; /* Align links to the start */
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 5px 0; /* Add margin for spacing */
    padding: 5px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #007BFF; /* Change to your desired hover color */
}

.footer-bottom {
    text-align: center;
    padding: 10px 20px;
    background-color: #111; /* Slightly different shade for contrast */
    color: #6c757d; /* Keep the existing color for copyright text */
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column; /* Stack elements vertically on smaller screens */
        align-items: center;
    }

    .certification-logos, .footer-links {
        justify-content: center; /* Center-align logos and links */
    }
}
