:root {
    --primary-color: #0b3d91;
    --secondary-color: #1a73e8;
    --accent-color: #fbbc05;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --font-heading: 'Merriweather', serif;
    --font-body: 'Roboto', sans-serif;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); line-height: 1.6; color: var(--text-color); }
html { scroll-behavior: smooth; }
a { text-decoration: none; color: var(--secondary-color); }
ul { list-style-position: inside; }

h1, h2, h3, h4 { font-family: var(--font-heading); margin-bottom: 1rem; }
.section-title { text-align: center; font-size: 2.5rem; color: var(--primary-color); margin-bottom: 3rem; position: relative; }
.section-title::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background-color: var(--secondary-color); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.bg-light { background-color: var(--light-bg); }

#navbar { background-color: var(--white); padding: 15px 50px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--primary-color); }
.nav-links { list-style: none; display: flex; gap: 20px; }
.nav-links a { color: var(--text-color); font-weight: 500; transition: var(--transition); }
.nav-links a:hover { color: var(--secondary-color); }
.hamburger { display: none; cursor: pointer; }
.hamburger span { display: block; width: 25px; height: 3px; background-color: var(--text-color); margin: 5px; transition: var(--transition); }

.hero { background: linear-gradient(rgba(11, 61, 145, 0.85), rgba(26, 115, 232, 0.85)), url('https://images.unsplash.com/photo-1497633762265-9d179a990aa6?auto=format&fit=crop&q=80') center/cover; height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white); }
.hero-content h1 { font-size: 3.5rem; margin-bottom: 0.5rem; }
.hero-content h2 { font-size: 1.5rem; font-weight: 400; margin-bottom: 1rem; }
.badges { margin: 20px 0 30px; }
.badge { background: var(--accent-color); color: #000; padding: 5px 15px; border-radius: 20px; font-size: 0.9rem; font-weight: bold; margin: 0 5px; }
.cta-button { display: inline-block; background-color: var(--secondary-color); color: var(--white); padding: 12px 30px; border-radius: 5px; font-weight: bold; transition: var(--transition); border: none; cursor: pointer; font-size: 1rem; }
.cta-button:hover { background-color: var(--primary-color); transform: translateY(-2px); }

.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin: 40px 0; }
.info-card { background: var(--white); padding: 30px; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 15px; }
.tag { background: var(--light-bg); border: 1px solid #ddd; padding: 5px 15px; border-radius: 20px; font-size: 0.9rem; }

.guidelines-content { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.rules-list ul { line-height: 2; }
.submission-details { background: var(--white); padding: 30px; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }

.board-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.board-card { background: var(--white); padding: 30px 20px; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); text-align: center; border-top: 4px solid var(--secondary-color); transition: var(--transition); }
.board-card:hover { transform: translateY(-5px); box-shadow: 0 8px 15px rgba(0,0,0,0.1); }
.board-card.chief { border-top-color: var(--primary-color); }
.board-img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 20px; border: 3px solid var(--light-bg); box-shadow: 0 4px 6px rgba(0,0,0,0.1); display: block; }
.board-card h3 { margin-bottom: 5px; color: var(--primary-color); font-size: 1.2rem; }
.role { font-weight: bold; color: var(--secondary-color); margin-bottom: 10px; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; }
.affiliation { font-size: 0.9rem; margin-bottom: 15px; color: #666; }

.process-steps { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.step { flex: 1; min-width: 150px; text-align: center; position: relative; }
.step-number { width: 50px; height: 50px; background: var(--secondary-color); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: bold; margin: 0 auto 15px; }

.contact-form { max-width: 600px; margin: 0 auto; background: var(--white); padding: 40px; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; }
.form-group input { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 4px; font-family: inherit; }
.checkbox-group { display: flex; align-items: flex-start; gap: 10px; }
.checkbox-group input { width: auto; margin-top: 5px; }

.archive-list { display: flex; gap: 20px; justify-content: center; }
.archive-card { background: var(--white); padding: 20px; border-radius: 8px; text-align: center; box-shadow: 0 2px 4px rgba(0,0,0,0.05); width: 250px; }
.view-link { display: inline-block; margin-top: 15px; font-size: 0.9rem; font-weight: bold; }
.disabled { color: #999; pointer-events: none; }

footer { background: var(--primary-color); color: var(--white); text-align: center; padding: 30px 0; }

@media (max-width: 768px) {
    .nav-links { display: none; flex-direction: column; width: 100%; position: absolute; top: 60px; left: 0; background: var(--white); box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
    .nav-links.active { display: flex; padding: 20px 0; text-align: center; }
    .hamburger { display: block; }
    .hero-content h1 { font-size: 2.5rem; }
    .guidelines-content { grid-template-columns: 1fr; }
    .process-steps { flex-direction: column; }
}