
/* =========================
   ROOT / THEME
========================= */
:root {
  --blue-primary: #1e3a8a;      /* Edison blue */
  --blue-accent: #1F55B8;
  --blue-soft: #dbeafe;

  --gold-accent: #f5c451;       /* restrained gold */
  --gold-soft: #fef3c7;

  --ink-dark: #0f172a;
  --ink-body: #374151;
  --ink-muted: #6b7280;

  --bg-main: #f9fafb;
  --bg-white: #ffffff;

  --radius-lg: 18px;
  --radius-md: 12px;
}

/* =========================
   GLOBAL RESET
========================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Rubik", system-ui, -apple-system, sans-serif;
  background-color: var(--bg-main);
  color: var(--ink-body);
  line-height: 1.7;
}

/* =========================
   NAVBAR
========================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: var(--bg-white);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid #e5e7eb;
}
.panel-banner {
  width: 80%;
  max-width: 220px;  
  border-radius: 10px;
height: auto; }
}



/* BRAND (LOGO + TEXT) */
.brand {
  display: flex;
  align-items: center;
  gap: 10px; /* space between logo and text */
}


.brand-logo {
  height: 67px;
  opacity: 0.9; /* small and lowered opacity to seem smoother */
}


.site-title {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 1px;
  color: #334155;
}


.nav-links a {
  margin-left: 28px;
  text-decoration: none;
  color: var(--ink-muted);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.6px;
  position: relative;
  padding-bottom: 6px;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue-accent);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--blue-accent),
    var(--gold-accent)
  );
}

/* =========================
   HERO SECTION
========================= */
.page-hero {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  padding: 100px 80px 120px;
  max-width: 1400px;
  margin: auto;
}
.hero-panel {
  position: relative;
  background-color: #324D8F;
  border-radius: 16px;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("edison.png");
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  border-radius: 16px;
  z-index: 0;
}

.hero-panel * {
  position: relative;
  z-index: 1;
}

  padding: 50px;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.hero-panel h2 {
  margin-top: 0;
  font-size: 34px;
  color: var(--blue-primary);
}

.hero-panel p {
  font-size: 15px;
  color: var(--ink-body);
  line-height: 1.8;
}

.hero-content h1 {
  font-size: 44px;
  margin-bottom: 20px;
  color: var(--ink-dark);
}

.hero-subtitle {
  display: block;
  font-size: 16px;
  margin-top: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-accent);
}

.hero-content p {
  max-width: 620px;
  font-size: 16px;
  margin-bottom: 22px;
}

.hero-emphasis {
  font-weight: 600;
  color: var(--ink-dark);
  border-left: 4px solid var(--gold-accent);
  padding-left: 16px;
  margin: 30px 0;
}

.hero-link a {
  text-decoration: none;
  font-weight: 700;
  color: var(--blue-primary);
  position: relative;
}

.hero-link a::after {
  content: "→";
  margin-left: 6px;
  transition: transform 0.3s;
}

.hero-link a:hover::after {
  transform: translateX(4px);
}

/* =========================
   WIFI SECTION
========================= */
.wifi-section {
  background: linear-gradient(
    180deg,
    var(--bg-white),
    #f8fafc
  );
  padding: 70px 40px;
}

.wifi-content {
  max-width: 700px;
  margin: auto;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 40px 50px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.wifi-content h3 {
  margin-top: 0;
  font-size: 22px;
  color: var(--blue-primary);
}

.wifi-content p {
  font-size: 15px;
}

.wifi-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--ink-muted);
}

/* =========================
   DIVIDER
========================= */
.section-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-accent),
    transparent
  );
  margin: 90px 0;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  padding: 90px 70px;
  background-color: var(--bg-white);
  border-top: 1px solid #e5e7eb;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  max-width: 1200px;
  margin: auto;
}

.footer-column h4 {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-dark);
  margin-bottom: 22px;
}

.footer-column p {
  font-size: 15px;
  color: var(--ink-body);
  margin-bottom: 14px;
}

.footer-column a {
  color: var(--blue-accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(37, 99, 235, 0.4);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

.footer-column a:hover {
  border-bottom-color: var(--gold-accent);
}

/* ===== REGISTRATION PAGE (MATCH CONFERENCE STYLE) ===== */

.registration-main {
  max-width: 800px;
  margin: 0 auto;
  padding: 90px 40px;
  text-align: center;
  background-color: #ffffff;
}

/* Title */
.registration-main h1 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: #0b3c6f;
  margin-bottom: 10px;
}

/* Body text */
.registration-main p {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* Gold divider (EXACT like schedule) */
.registration-main .divider {
  border-top: 1px solid #d4af37;
  width: 85%;
  margin: 50px auto 60px;
}

/* Emphasis text (emails, Open!) */
.registration-main strong {
  color: #0b3c6f;
}

/* Registration platform link — text style, not button */
.registration-main a {
  font-size: 16px;
  color: #0b3c6f;
  font-weight: 500;
  text-decoration: none;
}

.registration-main a:hover {
  color: #d4af37;
  transition: color 0.3s ease;
}

/* Mobile */
@media (max-width: 700px) {
  .registration-main {
    padding: 60px 25px;
  }
}
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1000px) {
  .page-hero {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 80px 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .navbar {
    padding: 18px 40px;
  }
}

/* BASE FONT */
body {
  font-family: 'Inter', Arial, sans-serif;
}

/* NAV + SMALL TEXT */
nav a,
.subtitle,
.committee {
  font-family: 'Inter', Arial, sans-serif;
  letter-spacing: 0.5px;
}

/* MAIN TITLES */
main h1,
section h2 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
}

/* COMMITTEE TITLES */
.committee span {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 500;
}
section p strong {
  color: #0b3c6f; /* blue */
}

/* ---------- CONTACT PAGE ONLY ---------- */

.contact-page main {
  max-width: 700px;
  margin: 0 auto;
  padding: 80px 40px;
  text-align: center;
}

.contact-page h1 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  color: #0b3c6f;
  margin-bottom: 15px;
}

.contact-page .subtitle {
  font-style: italic;
  color: #6b7280;
  margin-bottom: 40px;
}

.contact-page section {
  text-align: left;
}

.contact-page section p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.contact-page section p strong {
  color: #0b3c6f;
}


.contact-page main {
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 40px;
  text-align: left;
}

.contact-page h1 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: #0b3c6f;
  margin-bottom: 10px;
}

.contact-page p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.contact-page p strong {
  color: #0b3c6f;
}

.contact-page a {
  color: #d4af37;
  font-weight: 500;
  text-decoration: none;
}

.contact-page a:hover {
  text-decoration: underline;
}

/* Section spacing */
.contact-page section {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #d4af37;
}

.contact-main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 90px 40px;
  text-align: center;
}

.contact-main h1 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  letter-spacing: 2px;
  color: #0b3c6f;
  margin-bottom: 25px;
}

.contact-intro {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 15px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  text-align: left;
}

.contact-column h3 {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0b3c6f;
  margin-bottom: 20px;
}

.contact-column p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.contact-column strong {
  color: #0b3c6f;
}

@media (max-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
/* ===== CONTACT PAGE BOTTOM (3-COLUMN) ===== */

.contact-bottom {
  border-top: 1px solid #d4af37;
  margin-top: 80px;
  padding-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  text-align: left;
}

.contact-box h4 {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0b3c6f;
  margin-bottom: 20px;
}

.contact-box p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #374151;
}

.contact-box a {
  color: #1d4ed8;
  text-decoration: none;
}

.contact-box a:hover {
  text-decoration: underline;
}

/* Mobile fix */
@media (max-width: 900px) {
  .contact-bottom {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ===== SCHEDULE PAGE ===== */

.schedule-main {
  max-width: 800px;
  margin: 0 auto;
  padding: 90px 40px;
  text-align: center;
}

.schedule-main h1 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: #0b3c6f;
  margin-bottom: 10px;
}

.schedule-note {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 40px;
}

.schedule-date {
  font-size: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #374151;
  margin-bottom: 50px;
}

/* Schedule rows */
.schedule-block {
  margin-bottom: 35px;
}

.schedule-block .time {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 5px;
}

.schedule-block .event {
  font-size: 18px;
  color: #0b3c6f;
  font-weight: 500;
}

/* Mobile */
@media (max-width: 700px) {
  .schedule-main {
    padding: 60px 25px;
  }
}
/* ===== SCHEDULE PAGE ACCENTS (BLUE & GOLD) ===== */

.schedule-main {
  background-color: #ffffff;
}

/* Main title */
.schedule-main h1 {
  color: #0b3c6f; /* navy blue */
  letter-spacing: 1px;
}

/* Subtitle note */
.schedule-note {
  color: #6b7280;
}

/* Date heading */
.schedule-date {
  color: #0b3c6f;
  letter-spacing: 3px;
  margin-bottom: 60px;
}

/* Divider line */
.schedule-main .divider {
  border-top: 1px solid #d4af37; /* gold */
  width: 85%;
  margin: 50px auto 60px;
}

/* Individual schedule rows */
.schedule-block {
  padding: 18px 0;
  border-bottom: 1px solid #f3e6b3; /* soft gold */
}

.schedule-block:last-child {
  border-bottom: none;
}

/* Time text */
.schedule-block .time {
  font-size: 13px;
  color: #6b7280;
  letter-spacing: 2px;
}

/* Event text */
.schedule-block .event {
  font-size: 19px;
  font-weight: 500;
  color: #0b3c6f;
}

/* Hover effect (subtle, classy) */
.schedule-block:hover .event {
  color: #d4af37;
  transition: color 0.3s ease;
}

/* Mobile polish */
@media (max-width: 700px) {
  .schedule-date {
    font-size: 18px;
  }

  .schedule-block .event {
    font-size: 17px;
  }
}
/* ===== NAV BAR FIX ===== */

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

header h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  color: #0b3c6f;
}

nav a {
  margin-left: 22px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: #374151;
}

nav a:hover {
  color: #0b3c6f;
}

/* Active page */
nav a.active {
  color: #0b3c6f;
  font-weight: 600;
  border-bottom: 2px solid #d4af37;
  padding-bottom: 4px;
}
/* ===== COMMITTEES PAGE ACCENTS ===== */

.committees-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 90px 40px;
  text-align: center;
}

/* Main title */
.committees-main h1 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: #0b3c6f;
  margin-bottom: 15px;
}

/* Subtitle */
.committees-main .subtitle {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 40px;
}

/* Gold divider */
.committees-main .divider {
  border-top: 1px solid #d4af37;
  width: 85%;
  margin: 50px auto;
}

/* Section heading (General Assemblies, etc.) */
.committees-main h2 {
  font-size: 28px;
  color: #0b3c6f;
  margin-bottom: 15px;
}

/* Section description */
.committees-main p {
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
}

/* Individual committee row */
.committee {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 10px;
  border-top: 1px solid #f3e6b3; /* soft gold */
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.committee:last-child {
  border-bottom: 1px solid #f3e6b3;
}

/* Committee name */
.committee span {
  color: #0b3c6f;
  font-weight: 500;
}

/* Plus icon */
.committee .plus {
  font-size: 22px;
  color: #d4af37;
  font-weight: bold;
}

/* Hover effect */
.committee:hover span {
  color: #d4af37;
  transition: color 0.3s ease;
}

/* Mobile */
@media (max-width: 700px) {
  .committee {
    font-size: 13px;
  }
}
/* ===== COMMITTEES PAGE (MATCH CONFERENCE) ===== */

.committees-main {
  max-width: 800px;
  margin: 0 auto;
  padding: 90px 40px;
  text-align: center;
}

/* Page title */
.committees-main h1 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: #0b3c6f;
  margin-bottom: 15px;
}

/* Subtitle */
.committees-main .subtitle {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 40px;
}

/* Divider */
.committees-main .divider {
  border-top: 1px solid #d4af37;
  width: 85%;
  margin: 50px auto 60px;
}

/* Committee rows (same as schedule blocks) */
.committees-main .committee {
  margin-bottom: 35px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f3e6b3;
}

/* Category label (like time) */
.committees-main .committee .time {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 5px;
}

/* Committee name (like event) */
.committees-main .committee .event {
  font-size: 18px;
  color: #0b3c6f;
  font-weight: 500;
}

/* Hover accent */
.committees-main .committee:hover .event {
  color: #d4af37;
  transition: color 0.3s ease;
}

/* Mobile */
@media (max-width: 700px) {
  .committees-main {
    padding: 60px 25px;
  }

  .committees-main .committee .event {
    font-size: 16px;
  }
}

/* ===== REGISTRATION PAGE – ACCENTS ONLY ===== */

.registration-main {
  background-color: #ffffff;
}

/* Title */
.registration-main h1 {
  color: #0b3c6f; /* navy */
  letter-spacing: 1px;
}

/* Paragraph text */
.registration-main p {
  color: #374151;
}

/* Gold divider */
.registration-main .divider {
  border-top: 1px solid #d4af37;
  width: 85%;
  margin: 50px auto;
}

/* Emails emphasis */
.registration-main strong {
  color: #0b3c6f;
}

/* Registration platform link */
.registration-main a {
  color: #0b3c6f;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid #d4af37;
  padding-bottom: 2px;
}

.registration-main a:hover {
  color: #d4af37;
  border-bottom-color: #0b3c6f;
  transition: all 0.3s ease;
}

/* ===== COMMITTEES – GOLD DIVIDERS BETWEEN EVERY ITEM ===== */

.committee {
  padding: 22px 0;
  border-bottom: 1px solid #d4af37; /* GOLD divider */
}

/* Optional: remove divider from last item */
.committee:last-child {
  border-bottom: none;
}

/* Keep text styling consistent */
.committee .category {
  font-size: 13px;
  color: #6b7280;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.committee .name {
  font-size: 18px;
  font-weight: 500;
  color: #0b3c6f;
}

/* Hover stays subtle */
.committee:hover .name {
  color: #d4af37;
  transition: color 0.3s ease;
}

/* ===== CENTER COMMITTEE CONTENT ===== */

.committee {
  text-align: center;
}

/* Level label (BEGINNER / INTERMEDIATE) */
.committee .category {
  display: block;
  text-align: center;
  margin-bottom: 8px;
}

/* Committee name */
.committee .name {
  text-align: center;
  margin: 0 auto;
  max-width: 700px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 90px 70px;
  background-color: #ffffff;
  text-align: center;
}

/* Title */
.about-title {
  font-size: 30px;
  letter-spacing: 5px;
  margin-bottom: 15px;
}

/* Gold Divider */
.gold-divider {
  width: 80px;
  height: 3px;
  background-color: #c9a24d;
  margin: 0 auto 70px;
}

/* Grid Layout */
.secretariat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 70px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Member Card */
.member {
  padding-top: 25px;
  border-top: 2px solid #c9a24d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Role */
.role {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 8px;
}

/* Name */
.name {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 18px;
}

/* Image */
.member img {
  width: 100%;
  border-radius: 3px;
  margin-bottom: 18px;
}

/* Bio */
.bio {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  padding: 0 10px;
}
.email {
  font-size: 13px;
  color: #c9a24d;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.email:hover {
  text-decoration: underline;
  cursor: pointer;
}
.about {
  padding: 90px 60px;
  background-color: #fff;
  text-align: center;
}

/* Title */
.about-title {
  font-size: 30px;
  letter-spacing: 5px;
  margin-bottom: 15px;
}

/* Gold divider */
.gold-divider {
  width: 80px;
  height: 3px;
  background-color: #c9a24d;
  margin: 0 auto 70px;
}

/* Grid */
.secretariat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 70px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Card */
.member {
  padding-top: 25px;
  border-top: 2px solid #c9a24d;
}

/* Role */
.role {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 8px;
}

/* Name */
.name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Email */
.email a {
  font-size: 13px;
  color: #c9a24d;
  text-decoration: none;
}

.email a:hover {
  text-decoration: underline;
}

/* Image */
.member img {
  width: 100%;
  margin: 18px 0;
  border-radius: 3px;
}

/* Bio */
.bio {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

     .topic-guides {
  max-width: 900px;
  margin: 60px auto;
}

.committee-block {
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  margin-bottom: 40px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.committee-block h2 {
  font-size: 26px;
  margin-bottom: 18px;
  color: #0f172a;
}

.pdf-link {
  display: inline-block;
  font-size: 15px;
  color: #324D8F;
  text-decoration: none;
  border-bottom: 1px solid rgba(50, 77, 143, 0.4);
  padding-bottom: 2px;
  transition: 0.25s ease;
}

.pdf-link:hover {
  transform: scale(1.03);
  border-bottom-color: #324D8F;
}

.hero-note {
  margin-top: 25px;
}

.hero-note p {
  font-size: 14px;
  color: #475569;
}

.hero-note a {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(37, 99, 235, 0.4);
  padding-bottom: 2px;
  transition: 0.2s;
}

.topic-guides-section {
  display: flex;
  justify-content: center;
  padding: 80px 20px;
}

.topic-guides-box {
  background: #ffffff;
  padding: 50px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  max-width: 420px;
  width: 100%;
  text-align: center;
}

.topic-guides-box h2 {
  font-size: 26px;
  margin-bottom: 10px;
  color: #0f172a;
}

.topic-guides-box p {
  font-size: 15px;
  color: #4b5563;
  margin-bottom: 25px;
}

.topic-guides-box input {
  width: 100%;
  padding: 14px;
  border-radius:


.hero-note a:hover {
  border-bottom-color: #2563eb;
}

/* ===== CHAIRS SECTION ===== */
.chairs {
  padding: 90px 60px;
  background-color: #fff;
  text-align: center;
}

/* Title */
.section-title {
  font-size: 28px;
  letter-spacing: 5px;
  color: #2f3b46;
}

/* Divider */
.gold-divider {
  width: 70px;
  height: 3px;
  background-color: #c9a24d;
  margin: 18px auto 60px;
}

/* Grid */
.chairs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

/* Card */
.chair-card {
  border: 1px solid #e5e5e5;
  padding: 35px 30px;
  background-color: #fff;
}

/* Committee */
.committee {
  font-size: 12px;
  letter-spacing: 2px;
  color: #777;
  margin-bottom: 12px;
}

/* Name */
.name {
  font-size: 20px;
  margin-bottom: 10px;
}

/* Email */
.email a {
  font-size: 13px;
  color: #c9a24d;
  text-decoration: none;
}

.email a:hover {
  text-decoration: underline;
}

/* Bio */
.bio {
  margin-top: 18px;
  font-size: 14px;
  color: #555;
}

.chairs-container {
  max-width: 900px;
  margin: 0 auto;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

/* ===== SHARED ABOUT / CHAIRS SECTION ===== */
.about {
  padding: 90px 70px;
  background-color: #ffffff;
  text-align: center;
}

/* Title */
.about-title {
  font-size: 30px;
  letter-spacing: 5px;
  margin-bottom: 15px;
  color: #2f3b46;
}

/* Gold Divider */
.gold-divider {
  width: 80px;
  height: 3px;
  background-color: #c9a24d;
  margin: 0 auto 70px;
}

/* Grid */
.secretariat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 70px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Card */
.member {
  padding-top: 25px;
  border-top: 2px solid #c9a24d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Role / Committee */
.role {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 8px;
}

/* Name */
.name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2f3b46;
}

/* Email */
.email a {
  font-size: 13px;
  color: #c9a24d;
  text-decoration: none;
}

.email a:hover {
  text-decoration: underline;
}

/* Image */
.member img {
  width: 100%;
  border-radius: 3px;
  margin: 18px 0;
}

/* Bio */
.bio {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}
