/* Basic reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f4f8;
    color: #0f3252;
    line-height: 1.8;
    overflow-x: hidden;
}

/* Header styling */
header {
    background-color: white;
    color: #004080;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header .logo img {
    max-width: 150px;
    transition: transform 0.3s ease;
}

header .logo img:hover {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    gap: 20px;
    list-style-type: none;
}

nav ul li a {
    color: #004080;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

nav ul li a:hover {
    background-color: rgba(0, 64, 128, 0.1);
    border-radius: 5px;
}

/* Main content */
main {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

/* About Us Section Styling */
.about-us {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}

.about-content {
    background: linear-gradient(145deg, #ffffff, #f7f9fc);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-content h1 {
    font-size: 2.5rem;
    color: #004080;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

.mission-block, .team-block, .values-block {
    background: linear-gradient(145deg, #ffffff, #f7f9fc);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-block h2, .team-block h2, .values-block h2 {
    font-size: 2rem;
    color: #004080;
    margin-bottom: 10px;
}

.mission-block p, .team-block p, .values-block p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

.values-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.values-block ul li {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 10px;
}

.values-block ul li b {
    color: #004080;
    font-weight: bold;
}

/* Team Section Styling with Round Image */
.team-member {
    text-align: center;
    margin-top: 20px;
    user-select: none; /* Prevents selection for the entire container */
}

.team-member-image {
    width: 150px; /* Adjust size as needed */
    height: 150px; /* Make it a perfect circle */
    border-radius: 50%; /* Makes the image round */
    object-fit: cover; /* Ensures the image fills the circular shape */
    display: block;
    margin: 0 auto; /* Centers the image within the container */
    user-select: none; /* Prevents image selection */
}

.team-member p {
    margin-top: 10px;
    font-size: 16px;
    color: #0f3252;
    user-select: none; /* Prevents text selection */
}

/* Footer styling */
footer {
    background: white;
    color: #004080;
    padding: 50px 0;
    text-align: center;
    font-size: 0.95rem;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.footer-links a {
    color: #004080;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
}

.footer-links a:hover {
    text-decoration: underline;
}

.address {
    margin-top: 30px;
}

.note {
    color: #666;
    font-size: 0.9rem;
}

@media only screen and (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    main {
        padding: 30px;
    }

    .about-content h1, .team-block h2, .values-block h2 {
        font-size: 1.8rem;
    }

    .about-content p, .team-block p, .values-block p {
        font-size: 1rem;
    }

    footer {
        font-size: 0.85rem;
    }
}