/* ================= ROOT ================= */
:root {
  --brand-blue: #1f4fa3;   /* adjust to exact logo blue */
  --brand-red: #e11d2e;
  --text-dark: #111827;
  --text-muted: #4b5563;
  --bg-white: #ffffff;
  --border-light: #e5e7eb;
  --header-height: 90px;
}

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
}

/* ================= CONTAINER ================= */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ================= HEADER / NAVBAR ================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 56px; /* space between logo and nav */
}

/* LOGO */
.logo {
  margin-left: 16px; /* pulls logo slightly away from edge */
}

.logo img {
  height: 80px;
  width: auto;
  display: block;
}

/* NAV LINKS */
.main-nav {
  margin-left: auto; /* push nav to the right */
  display: flex;
  gap: 32px;
}

.main-nav a {
  color: var(--brand-blue);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}

.main-nav a:hover {
  opacity: 0.8;
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--brand-red);
}

/* NAV TOOLS (TRANSLATION PLACEHOLDER) */
.nav-tools {
  min-width: 80px;
  text-align: right;
}

/* ================= CONFERENCE HERO ================= */
.conference-hero {
  background: linear-gradient(
    135deg,
    #1e3a8a 0%,
    #0f2c6b 100%
  );
  padding: 80px 0 70px;   /* SHORTER HERO */
  text-align: center;
}


/* HEADLINE */
.conference-hero h1 {
  font-size: 56px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
}

/* RED STRIPE */
.conference-hero .red-line {
  width: 72px;
  height: 4px;
  background-color: #e11d48;
  margin: 0 auto 28px;
  border-radius: 2px;
}

/* SUBTEXT */
.conference-hero p {
  font-size: 20px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 auto;
  max-width: 760px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .conference-hero {
    padding: 120px 0 100px;
  }

  .conference-hero h1 {
    font-size: 40px;
  }

  .conference-hero p {
    font-size: 18px;
  }
}

/* ================= CONFERENCE SECTION ================= */
.conference-detail {
  background: #ffffff;
  padding: 100px 0;
}

/* ================= HEADER ================= */
.conference-header {
  text-align: center;
  margin-bottom: 70px;
}

.conference-header h2 {
  font-size: 40px;
  font-weight: 800;
  color: #1e3a8a;
  margin-bottom: 12px;
}

/* RED STRIPE */
.red-stripe {
  display: block;
  width: 64px;
  height: 4px;
  background: #e11d48;
  margin: 0 auto 22px;
  border-radius: 2px;
}

.conference-header p {
  max-width: 760px;
  margin: auto;
  font-size: 17px;
  line-height: 1.8;
  color: #475569;
}

/* ================= CONTENT LAYOUT ================= */
.conference-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

/* ================= TEXT ================= */
.conference-text p {
  font-size: 16.5px;
  line-height: 1.9;
  color: #475569;
  margin-bottom: 26px;
}

.conference-text h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 18px;
}

/* POINTS */
.conference-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.conference-points li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  font-size: 16px;
  color: #475569;
}

.conference-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: #e11d48;
  border-radius: 50%;
}

/* ================= IMAGE (RIGHT) ================= */
.conference-image {
  position: relative;
}

/* RED OUTER COVER */
.conference-image::before {
  content: "";
  position: absolute;
  inset: -16px;
  border: 3px solid #e11d48;
  z-index: 1;
}

/* IMAGE */
.conference-image img {
  width: 100%;
  display: block;
  background: #ffffff;
  position: relative;
  z-index: 2;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .conference-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .conference-header h2 {
    font-size: 32px;
  }
}
/* ================= CONFERENCE SECTION ================= */
.conference-detail {
  background: #ffffff;
  padding: 90px 0;
}

/* ================= HEADER ================= */
.conference-header {
  text-align: center;
  margin-bottom: 60px;
}

.conference-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: #1e3a8a;
  margin-bottom: 10px;
}

/* RED STRIPE */
.red-stripe {
  display: block;
  width: 60px;
  height: 4px;
  background: #e11d48;
  margin: 0 auto 18px;
  border-radius: 2px;
}

.conference-header p {
  max-width: 700px;
  margin: auto;
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
}

/* ================= CONTENT GRID ================= */
.conference-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* ================= TEXT ================= */
.conference-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 22px;
}

.conference-text h3 {
  font-size: 21px;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 16px;
}

/* ================= POINTS ================= */
.conference-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.conference-points li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 15.5px;
  color: #475569;
}

.conference-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  background: #e11d48;
  border-radius: 50%;
}

/* ================= IMAGE (RIGHT) ================= */
.conference-image {
  position: relative;
}

/* RED OUTER FRAME */
.conference-image::before {
  content: "";
  position: absolute;
  inset: -14px;
  border: 3px solid #e11d48;
  z-index: 1;
}

.conference-image img {
  width: 100%;
  display: block;
  background: #ffffff;
  position: relative;
  z-index: 2;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .conference-detail {
    padding: 70px 0;
  }

  .conference-header h2 {
    font-size: 30px;
  }

  .conference-content {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ================= CONFERENCE SECTION ================= */
.conference-detail {
  background: #ffffff;
  padding: 90px 0;
}

/* ================= HEADER ================= */
.conference-header {
  text-align: center;
  margin-bottom: 60px;
}

.conference-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: #1e3a8a;
  margin-bottom: 10px;
}

/* RED STRIPE */
.red-stripe {
  display: block;
  width: 60px;
  height: 4px;
  background: #e11d48;
  margin: 0 auto 18px;
  border-radius: 2px;
}

.conference-header p {
  max-width: 700px;
  margin: auto;
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
}

/* ================= CONTENT GRID ================= */
.conference-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* ================= TEXT ================= */
.conference-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 22px;
}

.conference-text h3 {
  font-size: 21px;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 16px;
}

/* ================= POINTS ================= */
.conference-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.conference-points li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 15.5px;
  color: #475569;
}

.conference-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  background: #e11d48;
  border-radius: 50%;
}

/* ================= IMAGE (RIGHT) ================= */
.conference-image {
  position: relative;
}

/* RED OUTER FRAME */
.conference-image::before {
  content: "";
  position: absolute;
  inset: -14px;
  border: 3px solid #e11d48;
  z-index: 1;
}

.conference-image img {
  width: 100%;
  display: block;
  background: #ffffff;
  position: relative;
  z-index: 2;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .conference-detail {
    padding: 70px 0;
  }

  .conference-header h2 {
    font-size: 30px;
  }

  .conference-content {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
/* ================= CONFERENCE SECTION ================= */
.conference-detail {
  background: #ffffff;
  padding: 90px 0;
}

/* ================= HEADER ================= */
.conference-header {
  text-align: center;
  margin-bottom: 60px;
}

.conference-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: #1e3a8a;
  margin-bottom: 10px;
}

/* RED STRIPE */
.red-stripe {
  display: block;
  width: 60px;
  height: 4px;
  background: #e11d48;
  margin: 0 auto 18px;
  border-radius: 2px;
}

.conference-header p {
  max-width: 700px;
  margin: auto;
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
}

/* ================= CONTENT GRID ================= */
.conference-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* ================= TEXT ================= */
.conference-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 22px;
}

.conference-text h3 {
  font-size: 21px;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 16px;
}

/* ================= POINTS ================= */
.conference-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.conference-points li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 15.5px;
  color: #475569;
}

.conference-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  background: #e11d48;
  border-radius: 50%;
}

/* ================= IMAGE (RIGHT) ================= */
.conference-image {
  position: relative;
}

/* RED OUTER FRAME */
.conference-image::before {
  content: "";
  position: absolute;
  inset: -14px;
  border: 3px solid #e11d48;
  z-index: 1;
}

.conference-image img {
  width: 100%;
  display: block;
  background: #ffffff;
  position: relative;
  z-index: 2;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .conference-detail {
    padding: 70px 0;
  }

  .conference-header h2 {
    font-size: 30px;
  }

  .conference-content {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
/* ================= CONFERENCE SECTION ================= */
.conference-detail {
  background: #ffffff;
  padding: 90px 0;
}

/* ================= HEADER ================= */
.conference-header {
  text-align: center;
  margin-bottom: 60px;
}

.conference-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: #1e3a8a;
  margin-bottom: 10px;
}

/* RED STRIPE */
.red-stripe {
  display: block;
  width: 60px;
  height: 4px;
  background: #e11d48;
  margin: 0 auto 18px;
  border-radius: 2px;
}

.conference-header p {
  max-width: 700px;
  margin: auto;
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
}

/* ================= CONTENT GRID ================= */
.conference-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* ================= TEXT ================= */
.conference-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 22px;
}

.conference-text h3 {
  font-size: 21px;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 16px;
}

/* ================= POINTS ================= */
.conference-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.conference-points li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 15.5px;
  color: #475569;
}

.conference-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  background: #e11d48;
  border-radius: 50%;
}

/* ================= IMAGE (RIGHT) ================= */
.conference-image {
  position: relative;
}

/* RED OUTER FRAME */
.conference-image::before {
  content: "";
  position: absolute;
  inset: -14px;
  border: 3px solid #e11d48;
  z-index: 1;
}

.conference-image img {
  width: 100%;
  display: block;
  background: #ffffff;
  position: relative;
  z-index: 2;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .conference-detail {
    padding: 70px 0;
  }

  .conference-header h2 {
    font-size: 30px;
  }

  .conference-content {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
/* ================= CONFERENCE SECTION ================= */
.conference-detail {
  background: #ffffff;
  padding: 90px 0;
}

/* ================= HEADER ================= */
.conference-header {
  text-align: center;
  margin-bottom: 60px;
}

.conference-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: #1e3a8a;
  margin-bottom: 10px;
}

/* RED STRIPE */
.red-stripe {
  display: block;
  width: 60px;
  height: 4px;
  background: #e11d48;
  margin: 0 auto 18px;
  border-radius: 2px;
}

.conference-header p {
  max-width: 700px;
  margin: auto;
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
}

/* ================= CONTENT GRID ================= */
.conference-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* text LEFT, image RIGHT */
  gap: 60px;
  align-items: center;
}

/* ================= TEXT ================= */
.conference-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 22px;
}

.conference-text h3 {
  font-size: 21px;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 16px;
}

/* ================= POINTS ================= */
.conference-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.conference-points li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 15.5px;
  color: #475569;
}

.conference-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  background: #e11d48;
  border-radius: 50%;
}

/* ================= IMAGE (RIGHT) ================= */
.conference-image {
  position: relative;
}

/* RED OUTER FRAME */
.conference-image::before {
  content: "";
  position: absolute;
  inset: -14px;
  border: 3px solid #e11d48;
  z-index: 1;
}

.conference-image img {
  width: 100%;
  display: block;
  background: #ffffff;
  position: relative;
  z-index: 2;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .conference-detail {
    padding: 70px 0;
  }

  .conference-header h2 {
    font-size: 30px;
  }

  .conference-content {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
/* ================= CONFERENCE CTA ================= */
.conference-cta {
  background: #1e3a8a; /* brand blue */
  padding: 90px 0;
  text-align: center;
}

.conference-cta h2 {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}

.conference-cta p {
  max-width: 700px;
  margin: 0 auto 36px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

/* CTA BUTTON */
.cta-btn {
  display: inline-block;
  padding: 16px 38px;

  font-size: 15px;
  font-weight: 600;
  text-decoration: none;

  color: #ffffff;
  background: #e11d48; /* red */

  border-radius: 999px;
  transition: all 0.25s ease;
}

.cta-btn:hover {
  background: #ffffff;
  color: #1e3a8a;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .conference-cta {
    padding: 70px 0;
  }

  .conference-cta h2 {
    font-size: 28px;
  }
}
/* ================= SIMPLE FOOTER ================= */

.simple-footer {
  background: #020617; /* very dark, clean */
  padding: 18px 0;
}

.simple-footer p {
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
  color: #94a3b8;
}

.simple-footer strong {
  color: #ffffff;
  font-weight: 500;
}

.footer-divider {
  margin: 0 10px;
  color: #475569;
}
