/* ===== RESEARCH CONCLAVE 2026 — STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0b1f3a;
  --navy-light: #132d54;
  --navy-dark: #061325;
  --gold: #c9a84c;
  --gold-light: #e0c97a;
  --gold-dark: #a8893a;
  --white: #ffffff;
  --off-white: #f5f5f0;
  --gray: #e8e8e3;
  --text: #333333;
  --text-light: #666666;
  --section-pad: 100px 60px 160px; /* Increased bottom padding for future images */
  --container-max: 1800px;
  --container-pad: 0 60px;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 12px 36px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 190px;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  line-height: 1.2;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-pad);
}

/* ===== LOGO BAR ===== */
.logo-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  background: var(--white);
  border-bottom: 2px solid var(--gold);
  padding: 15px 60px;
  transition: var(--transition);
}

.logo-bar-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.logo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
  transition: var(--transition);
}

.logo-item:hover {
  opacity: 0.8;
}

.logo-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  text-align: center;
  flex-shrink: 0;
  border: 2px solid var(--gold);
}

.logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  display: block;
}

.crest-logo {
  clip-path: inset(0 5px 0 0);
  /* Crops 5px from the right to remove the line */
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.logo-sub {
  font-size: 0.68rem;
  color: var(--text-light);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 122px;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 22px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 14px 60px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  flex-wrap: nowrap;
}

.nav-links a {
  color: #000000;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-dark);
  border-bottom-color: var(--gold-dark);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide:nth-child(1) {
  background-image: url('adbu_campus.png');
  background-position: center top;
}

.hero-slide:nth-child(2) {
  background-image: url('cGU_campus.png');
}

.hero-slide:nth-child(3) {
  background-image: url('gU.png');
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(11, 31, 58, 0.7) 0%, rgba(11, 31, 58, 0.5) 50%, rgba(11, 31, 58, 0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 280px 60px 60px;
  max-width: 1000px;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 800;
}

.hero h1 span {
  color: var(--gold);
}

.hero-theme {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-meta {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero-meta-item {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-meta-item .icon {
  color: var(--gold);
  font-size: 1.2rem;
}

.hero-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.hero-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* ===== PAGE HEADER (Sub-pages) ===== */
.page-header {
  padding: 320px 60px 100px; /* Increased top padding to lower the headline */
  background: linear-gradient(rgba(11, 31, 58, 0.85), rgba(11, 31, 58, 0.85)), url('adbu_campus.png');
  background-size: cover;
  background-position: center;
  text-align: center;
  color: var(--white);
}

.page-header h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 15px;
}

.page-header h1 span {
  color: var(--gold);
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto;
}

/* ===== SECTION COMMON ===== */
.section {
  padding: var(--section-pad);
}

.section-alt {
  background: var(--off-white);
}

.section-navy {
  background: var(--navy);
  color: var(--white);
}

.section-navy h2,
.section-navy h3,
.section-navy h4 {
  color: var(--white);
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 20px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-navy .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

/* ===== ABOUT ===== */
.about-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--text-light);
  text-align: center;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.about-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  transition: var(--transition);
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.about-card .icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.about-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.about-card p {
  font-size: 0.88rem;
  color: var(--text-light);
}

/* ===== SPEAKERS ===== */
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.speaker-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--gray);
}

.speaker-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}

.speaker-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 2.8rem;
  font-weight: 700;
  border: 3px solid var(--gold);
  font-family: 'Playfair Display', serif;
  overflow: hidden;
}

.speaker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.speaker-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--navy);
}

.speaker-card .role {
  font-size: 0.88rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 4px;
}

.speaker-card .org {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ===== DETAILS ===== */
.details-block {
  max-width: 1200px;
  margin: 0 auto 100px; /* Increased bottom margin for future images */
}

.details-block:last-child {
  margin-bottom: 0;
}

.details-block h3 {
  font-size: 1.6rem;
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.topic-tag {
  background: var(--navy);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}

.topic-tag:hover {
  background: var(--navy-light);
  transform: translateX(4px);
}

.cfp-box {
  background: linear-gradient(135deg, var(--off-white), var(--white));
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 36px;
  margin-top: 30px;
}

.cfp-box p {
  margin-bottom: 10px;
  font-size: 1rem;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.highlight-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.highlight-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.highlight-card h4 {
  font-size: 1rem;
}

.timeline-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.timeline-table th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-family: 'Playfair Display', serif;
}

.timeline-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray);
  font-size: 0.95rem;
}

/* ===== PANELS ===== */
.panels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.panel-card {
  background: var(--white);
  border: 1px solid var(--gray);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.panel-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}

.panel-tag {
  display: inline-block;
  background: var(--navy);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.panel-card h4 {
  font-size: 1.1rem;
  line-height: 1.4;
  color: var(--navy);
}

.panel-desc {
  margin-top: 15px;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
}

.timeline-table tr:hover td {
  background: rgba(201, 168, 76, 0.08);
}

/* ===== REGISTRATION ===== */
.reg-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.fee-table-wrap {
  overflow-x: auto;
  margin-bottom: 40px;
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}

.fee-table th {
  background: var(--navy);
  color: var(--white);
  padding: 16px 20px;
  text-align: left;
  font-family: 'Playfair Display', serif;
}

.fee-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray);
}

.fee-table tr:nth-child(even) td {
  background: var(--off-white);
}

.bank-card {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 36px;
  max-width: 600px;
  margin: 0 auto 30px;
}

.bank-card h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: var(--navy);
}

.bank-card p {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background: var(--gold);
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}

.text-center {
  text-align: center;
}

/* ===== PARTNERS ===== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.partner-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray);
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}

.partner-logo-box {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy-light);
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== PARTNERS ===== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.partner-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray);
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}

.partner-logo-box {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy-light);
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== VENUE ===== */
.venue-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.venue-map {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: var(--radius);
  margin-bottom: 40px;
  box-shadow: var(--shadow);
}

.venue-info {
  text-align: center;
  margin-bottom: 40px;
}

.venue-info h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.venue-info p {
  color: var(--text-light);
  font-size: 1.05rem;
}

.directions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.direction-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  text-align: center;
  transition: var(--transition);
}

.direction-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.direction-card .icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.direction-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.direction-card a {
  color: var(--gold-dark);
  font-weight: 600;
  text-decoration: none;
}

.direction-card a:hover {
  text-decoration: underline;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-group h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: var(--gold);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}

.contact-person {
  margin-bottom: 14px;
}

.contact-person strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
}

.contact-person span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

.contact-email {
  margin-top: 30px;
  text-align: center;
}

.contact-email a {
  color: var(--gold);
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: 600;
}

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

.contact-dept {
  text-align: center;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  padding: 24px 60px;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== TABLET (max-width: 768px) ===== */
@media (max-width: 768px) {
  :root {
    --section-pad: 70px 12px 120px; /* Increased bottom padding for future images */
    --container-pad: 0 12px;
  }

  .logo-bar {
    padding: 8px 20px;
  }

  .logo-bar-inner {
    gap: 24px;
  }

  .logo-placeholder {
    width: 40px;
    height: 40px;
    font-size: 0.5rem;
  }

  .logo-name {
    font-size: 0.72rem;
  }

  .logo-sub {
    font-size: 0.6rem;
  }

  .navbar {
    padding: 24px 20px;
    top: 60px;
  }

  .navbar.scrolled {
    padding: 16px 20px;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links a {
    font-size: 0.82rem;
  }

  .hero-content {
    padding: 100px 20px 50px;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .hero-theme {
    font-size: 1rem;
  }

  .page-header {
    padding: 240px 20px 60px; /* Increased for tablet visibility */
  }

  .page-header h1 {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .speakers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .topics-grid {
    grid-template-columns: 1fr;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .panels-grid {
    grid-template-columns: 1fr;
  }

  .directions-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer {
    padding: 20px 12px;
  }
}

/* ===== MOBILE (max-width: 480px) ===== */
@media (max-width: 480px) {
  :root {
    --section-pad: 40px 12px 80px; /* Increased bottom padding for future images */
    --container-pad: 0 12px !important;
  }

  .logo-bar {
    padding: 6px 12px;
  }

  .logo-bar-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    justify-items: center;
  }

  .logo-img {
    height: 45px;
  }

  .logo-text {
    display: none;
  }

  .logo-placeholder {
    width: 36px;
    height: 36px;
    font-size: 0.5rem;
  }

  .navbar {
    padding: 20px 16px;
    top: 118px;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .navbar.scrolled {
    top: 0 !important;
  }

  .nav-links {
    gap: 14px;
    flex-wrap: nowrap;
    padding-right: 16px;
  }

  .nav-links a {
    font-size: 0.78rem;
  }

  .hero {
    min-height: 100vh;
  }

  .hero-content {
    padding: 180px 12px 40px;
  }

  .hero-slide {
    background-size: cover;
    background-position: center;
  }

  .hero-slide:nth-child(2) {
    background-position: 75% center; /* Shifts image left to show more of the right side on mobile */
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(11, 31, 58, 0.3) 0%, rgba(11, 31, 58, 0.1) 50%, rgba(11, 31, 58, 0.4) 100%);
  }

  .hero h1 {
    font-size: clamp(1.75rem, 5vw, 2.1rem);
  }

  .hero-theme {
    font-size: 0.9rem;
  }

  .page-header {
    padding: 220px 16px 50px; /* Increased for mobile visibility */
  }

  .page-header h1 {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
  }

  .page-header p {
    font-size: 1rem;
  }

  .hero-meta {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .hero-logos {
    gap: 16px;
  }

  .hero-logo-box {
    width: 60px;
    height: 60px;
    font-size: 0.55rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .speakers-grid {
    grid-template-columns: 1fr;
  }

  .topics-grid {
    grid-template-columns: 1fr;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: 1fr;
  }

  .fee-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .bank-card {
    padding: 24px 16px;
  }

  .cfp-box {
    padding: 24px 16px;
  }

  .footer {
    padding: 16px 12px;
  }
}