/* ===== Fonts ===== */
@font-face {
  font-family: 'Abril Fatface';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/abril-fatface-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Muli';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/muli-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/open-sans-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/playfair-display-400.woff2') format('woff2');
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}

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

a {
  color: #5b8fc7;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #3a6da5;
}

ul {
  list-style: disc;
  padding-left: 1.5em;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: #5b8fc7;
  color: #fff;
  border-color: #5b8fc7;
}

.btn-primary:hover {
  background: #3a6da5;
  border-color: #3a6da5;
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #5b8fc7;
  border-color: #5b8fc7;
}

.btn-outline:hover {
  background: #5b8fc7;
  color: #fff;
}

/* ===== Navigation ===== */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(44, 62, 80, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.3s, box-shadow 0.3s;
}

.main-nav.scrolled {
  background: rgba(44, 62, 80, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-logo-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.3px;
  max-width: 220px;
  line-height: 1.4;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  padding: 0;
}

.nav-links li a {
  display: block;
  padding: 8px 18px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  background: #5b8fc7;
  transition: background 0.2s;
  text-decoration: none;
}

.nav-links li a:hover {
  background: #3a6da5;
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,62,80,0.7) 0%, rgba(91,143,199,0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 24px 80px;
  max-width: 800px;
}

.hero-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 24px;
  opacity: 0.9;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-tagline {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  margin-bottom: 40px;
  opacity: 0.95;
}

/* ===== Features ===== */
.features {
  padding: 80px 0;
  background: #f8f9fa;
}

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

.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 24px 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  color: #5b8fc7;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-card h5 {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2c3e50;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.6;
}

/* ===== About ===== */
.about {
  padding: 60px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5b8fc7;
  margin-bottom: 8px;
}

.about-text h2 {  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #2c3e50;
  margin-bottom: 24px;
}

.about-text p {
  margin-bottom: 16px;
  color: #555;
}

.about-text--centered {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-image img {
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* ===== Program ===== */
.program {
  padding: 60px 0 40px 0;
  background: #f8f9fa;
}

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

.program-content h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #2c3e50;
  margin-bottom: 16px;
}

.program-content > p {
  color: #555;
  margin-bottom: 28px;
}

.program-days {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 12px;
}

.program-day {
  text-align: center;
  max-width: 320px;
}

.day-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  color: #5b8fc7;
}

.day-icon svg {
  width: 100%;
  height: 100%;
}

.program-day h5 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.5px;
  color: #2c3e50;
  margin-bottom: 8px;
}

.program-day p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
}

/* ===== Download Section ===== */
.download-section {
  padding: 40px 0;
  background: #5b8fc7;
  color: #fff;
  text-align: center;
}

.download-box h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2rem;
  margin-bottom: 12px;
}

.download-box > p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 8px;
}

.download-box .btn-primary {
  background: #3a6da5;
  border-color: #3a6da5;
}

.download-box .btn-primary:hover {
  background: #2c5a8a;
  border-color: #2c5a8a;
}

.download-form {
  max-width: 420px;
  margin: 24px auto 0;
}

.download-form label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 8px;
  opacity: 0.9;
}

.download-input-group {
  display: flex;
  gap: 0;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.download-input-group input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  outline: none;
}

.download-input-group button {
  padding: 14px 28px;
  background: #5b8fc7;
  color: #fff;
  border: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Open Sans', sans-serif;
}

.download-input-group button:hover {
  background: #3a6da5;
}

/* ===== Rückblick ===== */
.rueckblick {
  padding: 100px 0;
  text-align: center;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #2c3e50;
  margin-bottom: 16px;
}

.section-subtitle {
  color: #666;
  margin-bottom: 48px;
  font-size: 1rem;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.timeline-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 2px solid #f0f0f0;
  transition: transform 0.3s, box-shadow 0.3s;
}

.timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.timeline-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  color: #5b8fc7;
}

.timeline-icon svg {
  width: 100%;
  height: 100%;
}

.timeline-card h5 {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5b8fc7;
  margin-bottom: 12px;
}

.timeline-card p {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.6;
}

/* ===== Gallery ===== */
.gallery {
  padding: 80px 0;
  background: #f8f9fa;
  text-align: center;
}

.gallery-grid {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1;
  cursor: pointer;
  flex-shrink: 0;
  width: 250px;
  scroll-snap-align: start;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* ===== Contact ===== */
.contact {
  position: relative;
  padding: 120px 24px;
  text-align: center;
  color: #fff;
  background: url('../images/contact-bg.jpg') center/cover no-repeat;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,62,80,0.65);
}

.contact-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.contact h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 24px;
}

.contact h3 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  line-height: 1.8;
}

.contact a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact a:hover {
  color: #a8d8ff;
}

/* ===== Footer ===== */
.site-footer {
  padding: 48px 0 32px;
  text-align: center;
  background: #fff;
  border-top: 1px solid #eee;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer-copy {
  font-size: 0.85rem;
  color: #999;
}

/* ===== Subpage Hero ===== */
.subpage-hero {
  background: #2c3e50;
  color: #fff;
  text-align: center;
  padding: 48px 24px 60px;
}

.subpage-hero-inner {
  max-width: 600px;
  margin: 0 auto;
}

.subpage-logo {
  width: 80px;
  height: auto;
  margin: 0 auto 24px;
}

.subpage-org-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
}

/* ===== Legal Content ===== */
.legal-content {
  padding: 60px 0 80px;
}

.legal-content h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2.4rem;
  color: #2c3e50;
  margin-bottom: 24px;
  text-align: center;
}

.legal-content h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.4rem;
  color: #2c3e50;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content p {
  margin-bottom: 16px;
  color: #555;
}

.legal-content ul {
  margin-bottom: 16px;
  color: #555;
}

.legal-content li {
  margin-bottom: 8px;
}

/* ===== Gate Overlay ===== */
.gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
}

.gate-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0f1923 0%, #162d4a 35%, #1a3550 60%, #0f1923 100%);
  background-size: 200% 200%;
  animation: gateBgShift 15s ease infinite;
}

.gate-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 500px at 15% 20%, rgba(91,143,199,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 600px 400px at 85% 80%, rgba(58,109,165,0.08) 0%, transparent 60%);
}

@keyframes gateBgShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.gate-scroll {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.gate-wrapper {
  width: 100%;
  max-width: 820px;
  color: #fff;
  animation: gateIn 0.7s ease-out;
}

@keyframes gateIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.gate-hero {
  text-align: center;
  margin-bottom: 48px;
}

.gate-logo {
  display: block;
  width: 64px;
  height: auto;
  margin: 0 auto 20px;
  filter: drop-shadow(0 2px 16px rgba(91,143,199,0.25));
}

.gate-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}

.gate-year {
  color: #7db4e0;
}

.gate-tagline {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.2px;
  line-height: 1.6;
}

.gate-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.gate-section {
  background: rgba(255,255,255,0.035);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 28px 22px 24px;
  text-align: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.gate-section:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(91,143,199,0.25);
  transform: translateY(-3px);
}

.gate-section-icon {
  width: 32px;
  height: 32px;
  color: #6ea3d4;
  margin: 0 auto 14px;
}

.gate-section-icon svg {
  width: 100%;
  height: 100%;
}

.gate-section-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #7db4e0;
  margin-bottom: 10px;
}

.gate-section-text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
}

.gate-access {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 22px;
  padding: 36px 32px;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}

.gate-message {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

.gate-message a {
  color: #7db4e0;
  text-decoration: none;
  border-bottom: 1px solid rgba(125,180,224,0.25);
  transition: color 0.2s, border-color 0.2s;
}

.gate-message a:hover {
  color: #fff;
  border-color: #fff;
}

.gate-form {
  max-width: 360px;
  margin: 0 auto;
}

.gate-input-group {
  display: flex;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  transition: border-color 0.3s;
}

.gate-input-group:focus-within {
  border-color: rgba(91,143,199,0.45);
}

.gate-input-group input {
  flex: 1;
  padding: 14px 16px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 0.92rem;
  font-family: 'Open Sans', sans-serif;
  letter-spacing: 1.5px;
  outline: none;
  min-width: 0;
}

.gate-input-group input::placeholder {
  color: rgba(255,255,255,0.3);
}

.gate-input-group button {
  padding: 15px 24px;
  background: #5b8fc7;
  color: #fff;
  border: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Open Sans', sans-serif;
  white-space: nowrap;
}

.gate-input-group button:hover {
  background: #4a7eb8;
}

.gate-error {
  color: #f87171;
  font-size: 0.85rem;
  margin-top: 14px;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-8px); }
  40%, 80% { transform: translateX(8px); }
}

.shake {
  animation: shake 0.4s ease;
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 20000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 4px;
  object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 2.5rem;
  padding: 12px;
  opacity: 0.7;
  transition: opacity 0.2s;
  line-height: 1;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
}

.lightbox-close {
  top: 16px;
  right: 24px;
  font-size: 3rem;
}

.lightbox-prev {
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3.5rem;
}

.lightbox-next {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3.5rem;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    gap: 10px;
  }
  
  .gallery-item {
    width: 220px;
  }
}

@media (max-width: 768px) {
  .nav-logo-text {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #2c3e50;
    flex-direction: column;
    padding: 80px 24px 32px;
    gap: 4px;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.2);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links li a {
    display: block;
    padding: 12px 16px;
    font-size: 0.9rem;
    background: transparent;
    border-radius: 8px;
  }

  .nav-links li a:hover {
    background: rgba(91,143,199,0.2);
  }

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

  .gate-columns {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gate-section {
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
  }

  .gate-section-icon {
    margin: 2px 0 0;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-image {
    order: -1;
  }

  .timeline-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-grid {
    gap: 8px;
  }
  
  .gallery-item {
    width: 180px;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .download-input-group {
    flex-direction: column;
    border-radius: 12px;
  }

  .download-input-group input {
    border-radius: 12px 12px 0 0;
    text-align: center;
  }

  .download-input-group button {
    border-radius: 0 0 12px 12px;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .program-days {
    flex-direction: column;
    align-items: center;
  }

  .gallery-grid {
    gap: 6px;
  }
  
  .gallery-item {
    width: 150px;
  }

  .gate-scroll {
    padding: 24px 16px;
  }

  .gate-input-group {
    flex-direction: column;
    border-radius: 14px;
  }

  .gate-input-group input {
    border-radius: 14px 14px 0 0;
    text-align: center;
  }

  .gate-input-group button {
    border-radius: 0 0 14px 14px;
  }

  .gate-access {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .gate-section {
    padding: 16px 14px;
  }

  .btn {
    padding: 10px 24px;
    font-size: 0.8rem;
  }
}
