/* ===========================
   SELF-HOSTED FONTS
   Single WOFF2 per weight — Latin + Latin-ext merged,
   no Google Fonts subset split (fixes Latvian diacritic rendering)
=========================== */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/lato-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/lato-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/lato-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('fonts/lato-900.woff2') format('woff2');
}

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  color: #2d3a4a;
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* ===========================
   BRAND VARIABLES
   Source: NRC Vaivari Stila grāmata v2 2025
=========================== */
:root {
  /* Primary palette */
  --navy:         #00142F;  /* Izaugsmes zils  — dark bg, headers */
  --blue-brand:   #40A0F1;  /* Nākotnes zils   — primary brand blue */
  --blue-mid:     #2963B6;  /* Jaunrades zils  — buttons, links */
  --blue-dark:    #0D4272;  /* Spēka zils      — dark accents */

  /* Green palette */
  --green-energy: #C2E161;  /* Enerģijas zaļš  — CTA2, icons, accents */
  --green-light:  #DDEEA7;  /* Līdzsvara zaļš  — light green tints */
  --green-dark:   #06332B;  /* Iedvesmas zaļš  — dark green bg */

  /* Neutral */
  --gray-light:   #F6F6F6;  /* Gaismas pelēks  — section bg */
  --gray-mid:     #D1D1D1;  /* Atbildības pelēks — borders */
  --white:        #ffffff;

  /* Semantic aliases */
  --text-dark:    #00142F;
  --text-body:    #2d3a4a;
  --text-muted:   #5a6a7a;
  --border:       #D1D1D1;
  --bg-light:     #F6F6F6;

  /* Misc */
  --radius:       8px;
  --radius-lg:    16px;
  --shadow:       0 2px 16px rgba(0,20,47,0.10);
  --shadow-hover: 0 6px 28px rgba(0,20,47,0.16);
  --transition:   0.2s ease;
}

/* ===========================
   TYPOGRAPHY
=========================== */
h1, h2, h3, h4 {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  line-height: 1.2;
  color: var(--navy);
}

p, li, label, input, textarea, button {
  font-family: 'Lato', sans-serif;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  margin-bottom: 2rem;
}
.section-title--left {
  text-align: left;
}

/* ===========================
   LAYOUT UTILITIES
=========================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4.5rem 0;
}

/* ===========================
   BRAND ICONS (SVG line icons)
=========================== */
.brand-icon {
  width: 52px;
  height: 52px;
  color: var(--green-energy);
  display: block;
  margin: 0 auto;
}
.brand-icon--sm {
  width: 36px;
  height: 36px;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.btn:focus-visible {
  outline: 3px solid var(--green-energy);
  outline-offset: 3px;
}

/* Primary — Jaunrades zils */
.btn-primary {
  background: var(--blue-mid);
  color: var(--white);
  border-color: var(--blue-mid);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(41,99,182,0.35);
}

/* Green CTA — Enerģijas zaļš */
.btn-green {
  background: var(--green-energy);
  color: var(--navy);
  border-color: var(--green-energy);
}
.btn-green:hover {
  background: #b5d655;
  border-color: #b5d655;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(194,225,97,0.4);
}

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--blue-mid);
  border-color: var(--blue-mid);
}
.btn-outline:hover {
  background: var(--blue-mid);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* ===========================
   HEADER / NAV
=========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,20,47,0.10);
  border-bottom: 2px solid var(--green-energy);
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  /* give logo breathing room */
  padding: 6px 0;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  transition: opacity var(--transition);
}
.nav-logo:hover .nav-logo-img {
  opacity: 0.8;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav-menu a {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 400;
  padding: 0.45rem 0.8rem;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-menu a:hover {
  color: var(--blue-mid);
  background: rgba(64,160,241,0.08);
}
.nav-cta {
  background: var(--blue-mid) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 0.45rem 1.1rem !important;
  border-radius: 6px !important;
}
.nav-cta:hover {
  background: var(--navy) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

/* Background — navy gradient standing in for the photo.
   Replace background-image with url(../assets/hero.jpg) when photo is ready. */
.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--navy);
  background-image:
    radial-gradient(ellipse at 65% 35%, rgba(64,160,241,0.22) 0%, transparent 55%),
    linear-gradient(140deg, #00142F 0%, #0D2A4A 55%, #1a3a5c 100%);
}

/* Decorative wave lines inspired by logo shape */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 600px 300px at 80% 60%, rgba(64,160,241,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,20,47,0.85) 0%,
    rgba(0,20,47,0.55) 55%,
    rgba(0,20,47,0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 1.5rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.hero-title {
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
  max-width: 600px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
  line-height: 1.15;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2.25rem;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Info bar */
.hero-infobar {
  position: relative;
  z-index: 2;
  background: rgba(0,0,0,0.45);
  border-top: 1px solid rgba(64,160,241,0.25);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: auto;
}

.infobar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 400;
  padding: 1rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.infobar-item:last-child {
  border-right: none;
}
.infobar-icon {
  font-size: 1rem;
  color: var(--green-energy);
}

/* ===========================
   WHY SECTION
=========================== */
.section-why {
  background: var(--bg-light);
}

.cards-grid {
  display: grid;
  gap: 1.5rem;
}
.cards-grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow);
  border-bottom: 3px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition),
              border-color var(--transition);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-bottom-color: var(--green-energy);
}

.feature-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(194,225,97,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.feature-card p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===========================
   ABOUT SECTION
=========================== */
.section-about {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-text {
  text-align: center;
  font-size: 1.08rem;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.85;
}

/* ===========================
   PROGRAMME SECTION
=========================== */
.section-programme {
  background: var(--bg-light);
}

.programme-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}
.programme-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.75rem;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.programme-item:last-child {
  border-bottom: none;
}
.programme-item:hover {
  background: var(--bg-light);
}
/* Brand green triangle bullet */
.programme-item::before {
  content: '';
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--green-energy);
  flex-shrink: 0;
}
.programme-time {
  font-weight: 700;
  color: var(--navy);
  min-width: 120px;
  font-size: 0.95rem;
}
.programme-desc {
  color: var(--text-body);
  font-weight: 400;
}

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

/* ===========================
   SPEAKERS SECTION
=========================== */
.section-speakers {
  background: var(--white);
}

.speaker-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.speaker-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.speaker-photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: 'Lato', sans-serif;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
}
/* Brand-consistent photo placeholder gradients */
.photo-1 { background: linear-gradient(150deg, var(--blue-brand) 0%, var(--blue-mid) 100%); }
.photo-2 { background: linear-gradient(150deg, var(--blue-mid)   0%, var(--blue-dark) 100%); }
.photo-3 { background: linear-gradient(150deg, var(--blue-dark)  0%, var(--navy) 100%); }
.photo-4 { background: linear-gradient(150deg, #1a4060            0%, var(--navy) 100%); }

.speaker-info {
  padding: 1.1rem 1.25rem 1.4rem;
  border-top: 3px solid var(--green-energy);
}
.speaker-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.speaker-org {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 0.1rem;
}
.speaker-role {
  font-size: 0.85rem;
  font-weight: 300;
  font-style: italic;
  color: var(--blue-brand);
}

/* ===========================
   REGISTER SECTION
=========================== */
.section-register {
  background: var(--bg-light);
}

.register-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* --- Audience block --- */
.audience-block {
  margin-bottom: 2.5rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.audience-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 0.75rem;
  text-align: center;
  box-shadow: var(--shadow);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  transition: transform var(--transition), box-shadow var(--transition);
  border-bottom: 2px solid transparent;
}
.audience-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-bottom-color: var(--green-energy);
}
.audience-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.65rem;
  width: 48px;
  height: 48px;
  background: rgba(194,225,97,0.15);
  border-radius: 50%;
}

/* --- Form --- */
.form-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.15rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
  letter-spacing: 0.01em;
}
.form-group label span {
  color: var(--blue-brand);
  margin-left: 2px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: var(--text-body);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-brand);
  box-shadow: 0 0 0 3px rgba(64,160,241,0.18);
}
.form-group input.is-invalid,
.form-group textarea.is-invalid {
  border-color: #d32f2f;
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Honeypot — visually hidden, still in DOM for bots */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.field-error {
  display: block;
  font-size: 0.8rem;
  color: #d32f2f;
  margin-top: 0.25rem;
  min-height: 1.1em;
}

#form-message {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  border-radius: var(--radius);
  padding: 0;
}
#form-message.success {
  background: rgba(194,225,97,0.2);
  color: #2e5a1a;
  padding: 0.9rem 1rem;
  border: 1.5px solid rgba(194,225,97,0.6);
  font-weight: 700;
}
#form-message.error {
  background: #ffebee;
  color: #c62828;
  padding: 0.9rem 1rem;
  border: 1.5px solid #ef9a9a;
  font-weight: 700;
}

/* --- Practical info (right column) --- */
.register-right {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: 84px;
}
.register-right .section-title--left {
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.map-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #c8e6c9 0%, #81c784 50%, #4caf50 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 22px 22px;
}
.map-inner {
  position: relative;
  text-align: center;
  color: #1b5e20;
}
.map-pin {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0.25rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}
.map-inner p {
  font-weight: 700;
  font-size: 0.95rem;
}
.map-coords {
  font-size: 0.75rem !important;
  font-weight: 300 !important;
  opacity: 0.7;
}

.practical-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}
.practical-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--text-body);
  font-weight: 400;
}
.prac-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--blue-brand);
}

.partner-logos {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.partner-logo-img {
  height: 52px;
  width: auto;
  /* SVG uses navy + blue — shows well on white bg */
}

.logo-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
}

/* Ukraine flag badge */
.ukraine-flag {
  width: 42px;
  height: 28px;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.ukraine-blue  { flex: 1; background: #005BBB; }
.ukraine-yellow{ flex: 1; background: #FFD500; }

.logo-ukraine {
  gap: 0.6rem;
  font-weight: 700;
  color: var(--navy);
}

/* ===========================
   FOOTER
=========================== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 1.5rem 0;
}
.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 1rem;
  font-size: 0.875rem;
  font-weight: 400;
}
.footer-nav a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-nav a:hover {
  color: var(--green-energy);
}
.footer-nav span[aria-hidden] {
  color: rgba(255,255,255,0.25);
}

/* ===========================
   RESPONSIVE — 768px
=========================== */
@media (max-width: 768px) {

  /* Nav */
  .nav-toggle {
    display: flex;
  }
  .nav-menu {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 0 1rem;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-top: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0,20,47,0.10);
  }
  .nav-menu.is-open {
    max-height: 360px;
  }
  .nav-menu a {
    padding: 0.8rem 1.5rem;
    border-radius: 0;
    font-size: 1rem;
    color: var(--navy);
  }
  .nav-cta {
    margin: 0.5rem 1.25rem 0 !important;
    border-radius: var(--radius) !important;
    text-align: center;
  }

  /* Hero */
  .hero {
    min-height: 500px;
  }
  .hero-content {
    padding: 2.5rem 1.25rem 1.5rem;
  }
  .infobar-item {
    padding: 0.75rem 1rem;
    font-size: 0.82rem;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex: 1 1 50%;
    justify-content: center;
  }
  .infobar-item:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.1);
  }
  .infobar-item:nth-last-child(1),
  .infobar-item:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
  }

  /* Cards */
  .cards-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Register layout */
  .register-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .register-right {
    position: static;
  }
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Programme */
  .programme-time {
    min-width: 90px;
    font-size: 0.85rem;
  }

  /* Footer */
  .footer-nav {
    flex-direction: column;
    text-align: center;
    gap: 0.4rem;
  }
}

@media (max-width: 480px) {
  .cards-grid--4 {
    grid-template-columns: 1fr;
  }
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-buttons {
    flex-direction: column;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
  .section {
    padding: 3rem 0;
  }
}
