/* RESET */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    background: #f6f7f9;
    color: #1b2630;
    line-height: 1.4;
}

.container {
    width: 1100px;
    max-width: 92%;
    margin: 0 auto;
}

/* ========================= */
/* HEADER */
/* ========================= */
.header {
    background: #0B2545;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 25px;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    padding: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 15px;
}

/* ========================= */
/* HERO */
/* ========================= */
.hero {
    background: url("../images/background.jpg") center/cover no-repeat;
    padding: 40px 0 60px;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* ========================= */
/* COMMITTEE + MEMBERS GRID */
/* ========================= */
.management-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    width: 100%;
    margin: 20px auto;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.info-card h3 {
    margin-bottom: 12px;
}

/* TABLE */
.committee-table {
    width: 100%;
    border-collapse: collapse;
}

.committee-table td {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.committee-table tr:last-child td {
    border-bottom: none;
}

/* ========================= */
/* GOOGLE SHEET EMBED */
/* ========================= */
.sheet-container {
    width: 100%;
    height: 380px;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #ccc;
}

.sheet-frame {
    width: 100%;
    height: 650px;
    border: none;
}

/* ========================= */
/* FOOTER */
/* ========================= */
.footer {
    background: #17324b;
    color: #cfe6fb;
    padding: 18px 0;
    margin-top: 30px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons {
    font-size: 20px;
}

/* =========================*
