body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #222;
}

/* Background */
.bg-overlay {
    position: fixed;
    inset: 0;
    background: url('assets/bg.svg') center/cover no-repeat;
    opacity: 0.2;
    z-index: -1;
}

/* Header */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 40px;
    background: rgba(203, 196, 196, 0.152);
    backdrop-filter: blur(4px);
    position: sticky;
    top: 0;
    z-index: 10;
}

/* Logo */
.logo {
    width: 300px;
    height: auto;
}

/* Navigation (Contact) */
.nav-links {
    position: absolute;
    right: 40px;
    display: flex;
    align-items: center;
}

.contact-hover {
    position: relative;
    font-size: 18px;
    color: #333;
    cursor: pointer;
}

.contact-popup {
    position: absolute;
    right: 0;
    top: 130%;
    background: rgba(255, 255, 255, 0.96);
    padding: 8px 14px;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    z-index: 20;
}

.contact-popup a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
}

.contact-popup a:hover {
    color: #0077ff;
}

/* Desktop hover */
@media (hover: hover) {
    .contact-hover:hover .contact-popup {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
}

/* Mobile tap with 2.5s auto-hide */
@media (hover: none) and (pointer: coarse) {
    .contact-hover:active .contact-popup,
    .contact-hover:focus-within .contact-popup {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        animation: autoHideMobile 2.5s forwards;
    }
}

@keyframes autoHideMobile {
    0%, 90% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; pointer-events: none; transform: translateY(-10px); }
}

/* Content */
.content {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    animation: fadeIn 1s ease-in-out;
    background: transparent;
    text-align: left;
}

/* Committee list */
.committee-list {
    list-style: none;
    padding: 0;
    columns: 3;
    column-gap: 40px;
    font
