:root {
  --primary: #00d9ff;
  --primary-dark: #00a8cc;
  --secondary: #6366f1;
  --accent: #f59e0b;
  --bg-dark: #0a0e1a;
  --bg-surface: #151b2e;
  --bg-elevated: #1e2842;
  --text-primary: #ffffff;
  --text-secondary: #a0aec0;
  --text-muted: #718096;
  --success: #10b981;
  --glow-primary: rgba(0, 217, 255, 0.3);
  --glow-secondary: rgba(99, 102, 241, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-secondary);
  background: var(--bg-dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

p {
  margin-bottom: 1.25rem;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 3rem;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 217, 255, 0.1);
  transition: all 0.3s ease;
}

header.scrolled {
  background: rgba(10, 14, 26, 0.95);
  box-shadow: 0 10px 40px rgba(0, 217, 255, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  gap: 2rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.3s ease;
}

.logo-link:hover {
  transform: translateY(-2px);
}

.logo-svg {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 0 20px var(--glow-primary));
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

nav {
  display: none;
  align-items: center;
  gap: 3rem;
}

@media (min-width: 1024px) {
  nav {
    display: flex;
  }
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s ease;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-surface);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(0, 217, 255, 0.2);
}

.lang-btn {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.25rem 0.5rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  color: var(--primary);
}

.lang-btn.active {
  color: var(--text-primary);
  background: rgba(0, 217, 255, 0.1);
}

.lang-divider {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px var(--glow-primary);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--bg-surface);
  padding: 6rem 2rem 2rem;
  transition: right 0.4s ease;
  z-index: 999;
  overflow-y: auto;
  border-left: 1px solid rgba(0, 217, 255, 0.2);
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu .nav-links {
  flex-direction: column;
  gap: 0;
  align-items: stretch;
}

.mobile-menu .nav-links li {
  border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.mobile-menu .nav-links a {
  display: block;
  padding: 1.25rem 0;
  font-size: 1.125rem;
}

.mobile-menu .nav-links a::after {
  display: none;
}

.mobile-menu .lang-switcher {
  margin-top: 2rem;
  justify-content: center;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, var(--glow-primary) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, var(--glow-secondary) 0%, transparent 50%);
  opacity: 0.15;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-content {
    grid-template-columns: 60% 1fr;
    gap: 4rem;
  }
}

.hero-text h1 {
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .hero-actions {
    align-items: flex-end;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  min-height: 44px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--text-primary);
  box-shadow: 0 10px 30px var(--glow-primary);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px var(--glow-primary);
}

.btn-secondary {
  background: var(--bg-surface);
  color: var(--text-primary);
  border: 2px solid rgba(0, 217, 255, 0.3);
}

.btn-secondary:hover {
  background: var(--bg-elevated);
  border-color: var(--primary);
  box-shadow: 0 10px 30px var(--glow-primary);
  transform: translateY(-3px);
}

.floating-contact {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
}

.floating-contact .btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  padding: 0;
  box-shadow: 0 10px 40px var(--glow-primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 10px 40px var(--glow-primary);
  }
  50% {
    box-shadow: 0 10px 60px var(--glow-primary), 0 0 0 10px rgba(0, 217, 255, 0.1);
  }
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: var(--text-secondary);
}

.glass-card {
  background: rgba(30, 40, 66, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 60px var(--glow-primary);
}

.glass-card:hover::before {
  opacity: 1;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .photo-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
  }
}

.photo-item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(0, 217, 255, 0.2);
}

@media (min-width: 768px) {
  .photo-item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }
  .photo-item:nth-child(2) {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
  }
  .photo-item:nth-child(3) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }
  .photo-item:nth-child(4) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.photo-item:hover img {
  transform: scale(1.1);
}

.photo-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 217, 255, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.photo-item:hover::after {
  opacity: 1;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
  }
}

.bento-item {
  background: rgba(30, 40, 66, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .bento-item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }
  .bento-item:nth-child(4) {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
  }
}

.bento-item::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--glow-primary) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.bento-item:hover::before {
  opacity: 0.1;
}

.bento-item:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 60px var(--glow-primary);
}

.bento-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 20px var(--glow-primary));
}

.bento-item h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.bento-item p {
  color: var(--text-secondary);
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: rgba(30, 40, 66, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 60px var(--glow-primary);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px var(--glow-primary);
}

.feature-card h3 {
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: rgba(30, 40, 66, 0.4);
  border-radius: 20px;
  border: 1px solid rgba(0, 217, 255, 0.1);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 1.125rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(30, 40, 66, 0.6);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--glow-primary);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.iti, #phone {
  width: 100%;
}

.iti__flag-container {
  background: transparent;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 0.25rem;
  cursor: pointer;
  accent-color: var(--primary);
}

.checkbox-group label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  cursor: pointer;
}

.checkbox-group label a {
  color: var(--primary);
  text-decoration: underline;
}

.contact-info {
  background: rgba(30, 40, 66, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 24px;
  padding: 2.5rem;
  margin-top: 3rem;
}

.contact-info h3 {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--text-primary);
  flex-shrink: 0;
  box-shadow: 0 8px 24px var(--glow-primary);
}

.contact-details h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.contact-details p {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.contact-details a {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--primary);
}

footer {
  background: var(--bg-surface);
  border-top: 1px solid rgba(0, 217, 255, 0.1);
  padding: 4rem 0 2rem;
  margin-top: 6rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-section h4 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-section p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 217, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(21, 27, 46, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0, 217, 255, 0.2);
  padding: 1.5rem;
  z-index: 1100;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .cookie-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.cookie-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-buttons .btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

.thanks-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.thanks-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--text-primary);
  margin: 0 auto 2rem;
  box-shadow: 0 20px 60px var(--glow-primary);
  animation: scaleIn 0.6s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.thanks-content h1 {
  margin-bottom: 1.5rem;
}

.thanks-content p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 8rem 1.5rem 4rem;
}

.legal-content h1 {
  margin-bottom: 1rem;
}

.legal-date {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 3rem;
  display: block;
}

.legal-content h2 {
  font-size: 1.75rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.legal-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.legal-content ul li {
  color: var(--text-secondary);
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  position: relative;
}

.legal-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
}

.swiper {
  width: 100%;
  padding: 2rem 0 4rem;
}

.swiper-slide {
  height: auto;
}

.swiper-pagination-bullet {
  background: var(--text-muted);
  opacity: 0.5;
  width: 10px;
  height: 10px;
}

.swiper-pagination-bullet-active {
  background: var(--primary);
  opacity: 1;
  box-shadow: 0 0 10px var(--glow-primary);
}

.error-message {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: none;
}

.form-group.error input,
.form-group.error textarea {
  border-color: #ef4444;
}

.form-group.error .error-message {
  display: block;
}

@media (max-width: 767px) {
  .section {
    padding: 4rem 0;
  }
  
  .section-header {
    margin-bottom: 3rem;
  }
  
  .glass-card {
    padding: 1.5rem;
  }
  
  .bento-item {
    padding: 2rem;
    min-height: 250px;
  }
  
  .feature-card {
    padding: 2rem;
  }
  
  .contact-info {
    padding: 2rem;
  }
  
  footer {
    padding: 3rem 0 1.5rem;
  }
}