/* about.css */

/* General Styles for the About Us Page */
body {
    font-family: 'Roboto', sans-serif; /* Use Roboto font for consistency */
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9; /* Light background for contrast */
}

/* Header Styles */
header {
    background-color: #003366; /* Dark blue background */
    color: #ffffff; /* White text */
    padding: 20px 0;
}

header h1 {
    text-align: center;
    font-size: 2.5em; /* Consistent font size */
}

/* Navigation Styles */
nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

/* About Section Styles */
.about-section {
    padding: 40px 20px;
    background-color: #ffffff; /* White background for the about section */
    margin: 20px auto;
    border: 2px solid #003366; /* Dark blue border for the section */
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.about-section h2 {
    text-align: center;
    color: #003366; /* Dark blue color for headings */
}

.about-section p {
    text-align: justify;
    margin: 15px 0;
}

/* Vision and Mission Section */
.vision-mission-section {
    padding: 40px 20px;
}

.vision-mission-section h2 {
    text-align: center;
    color: #003366; /* Dark blue color for headings */
}

.container {
    display: flex;
    justify-content: space-between; /* Adjusted for better spacing */
    margin-top: 20px;
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

.box {
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    width: 48%; /* Adjusted width to allow two boxes side by side */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px; /* Space between boxes */
}

.box h3 {
    color: #0056b3;
}

.mission-list {
    list-style-type: disc;
    margin-left: 20px;
}

/* Governing Trust Section */
.trust-section {
    padding: 40px 20px;
}

.trust-section h2 {
    text-align: center;
    color: #003366; /* Dark blue color for headings */
}

.trustee-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 20px;
}

.trustee-box {
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    width: 300px;
    margin: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.trustee-box img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.trustee-info {
    margin: 5px 0;
}

.trustee-name {
    font-weight: bold;
    font-size: 1.1em; /* Slightly larger font for names */
}

/* Campus Images Section */
.campus-images-section {
    padding: 40px 20px;
    background-color: #ffffff; /* White background for the campus section */
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.campus-images-section h2 {
    text-align: center;
    color: #003366; /* Dark blue color for headings */
}

.campus-images {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
    margin-top: 20px;
}

.campus-photo {
    width: 30%; /* Responsive width for images */
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
footer {
    background-color: #333; /* Dark background */
    color: #ffffff; /* White text */
    padding: 20px 0; /* Padding for footer */
    text-align: center; /* Centered text */
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

.quick-links, .contact-info {
    margin: 20px;
}

.quick-links h4, .contact-info h4 {
    color: #FFD700; /* Gold color for headings */
}

.quick-links ul {
    list-style: none;
    padding: 0;
}

.quick-links ul li {
    margin: 5px 0; /* Space between list items */
}

.social-media a {
    margin: 0 10px; /* Space between social media icons */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .trustee-container {
        flex-direction: column; /* Stack trustees on smaller screens */
        align-items: center; /* Center align */
    }

    .campus-images {
        flex-direction: column; /* Stack images on smaller screens */
        align-items: center; /* Center align */
    }

    .campus-photo {
        width: 80%; /* Full width for images on mobile */
    }

    .footer-content {
        flex-direction: column; /* Stack footer content on smaller screens */
        align-items: center; /* Center align */
    }
}