body {
    margin: 0;
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f9;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #003466;
    color: #fff;
}

.header-buttons {
    display: flex;
    gap: 15px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    padding: 0.5rem 1rem;
}

.nav-link:hover {
    background-color: #00509e;
    border-radius: 5px;
}

.btn {
    background-color: #00509e;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #0077cc;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    max-width: 70px;
    height: auto;
}

.logo h1 {
    font-size: 2.5rem;
    margin: 0;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner {
    background: url('../assets/banner.jpg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 0 2rem;
}

.banner h2 {
    display: inline-block;
    font-weight: 500;
    color: #fff;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.9);
    margin: 10rem auto 0;
    padding: 0.5rem 1rem;
    text-align: center;
    font-size: 2.5rem;
    line-height: 1.5;
    background-color: rgba(0, 0, 0, 0.4); /* subtle dark overlay */
    border-radius: 20px; /* optional: smooths corners */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.banner p {
    font-size: 1.2rem;
    max-width: 600px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    background-color: rgba(0, 0, 0, 0.4); /* subtle dark overlay */
    border-radius: 20px; /* optional: smooths corners */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.info-section, .about-section {
    padding: 3rem 2rem;
    background-color: #ffffff;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.info-section h2, .about-section h2{
    font-weight: 600;
    padding: 0.5rem;
    border-radius: 10px;
    border: 2px solid #fff;
    background-color: #fac01a;
}

.section-team-information {
    background-color: #ffffff; 
    padding: 3rem 2rem;
    text-align: center;
}

.section-team-information h2 {
    margin-bottom: 1rem;
    color: #005f73;
}

.team-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.team-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    text-align: center;
    max-width: 280px;
    padding: 1rem;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card img {
    width: 250px;
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.team-card h3 {
    margin-bottom: 0.5rem;
    color: #005f73;
}

.team-card p {
    color: #333;
}

footer {
    background-color: #003466;
    color: #fff;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
    position: relative;
    bottom: 0;
    width: 100%;
}

iframe, video {
    width: 90%;
    max-width: 700px;
    margin: 1rem auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Fade-in animation */
.info-section, .about-section, .team-card {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}