*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Manrope', sans-serif;
  line-height: 1.7;
  color: #0f172a;
  background-color: #f8fafc;
  overflow-x: hidden;
}

.cna-age-verification-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(8px);
}

.cna-age-confirmation-box {
  width: 90%;
  max-width: 650px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cna-age-icon {
  font-size: 3.5rem;
  color: #3b82f6;
  margin-bottom: 1.5rem;
}

.cna-age-heading {
  font-family: 'Pathway Extreme', sans-serif;
  font-size: 2.2rem;
  color: white;
  margin-bottom: 1.5rem;
}

.cna-age-message {
  color: #94a3b8;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.cna-resource-links-container {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2.5rem;
}

.cna-resources-title {
  font-family: 'Pathway Extreme', sans-serif;
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.cna-resource-links-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.cna-support-link {
  color: #60a5fa;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  background-color: rgba(59, 130, 246, 0.1);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cna-support-link:hover {
  background-color: rgba(59, 130, 246, 0.2);
  transform: translateY(-2px);
}

.cna-age-buttons-wrapper {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.cna-confirm-button {
  padding: 1rem 2.5rem;
  background: linear-gradient(45deg, #3b82f6, #6366f1);
  color: white;
  border: none;
  border-radius: 50px;
  font-family: 'Pathway Extreme', sans-serif;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cna-confirm-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.cna-decline-button {
  padding: 1rem 2.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-family: 'Pathway Extreme', sans-serif;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cna-decline-button:hover {
  background-color: rgba(239, 68, 68, 0.2);
  transform: translateY(-3px);
}

.cna-main-header-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  overflow: hidden;
}

.cna-header-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../cna-imgs/cna-background-img-1.jpg') center/cover;
  opacity: 0.85;
  z-index: -1;
}

.cna-header-background-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.8) 100%);
}

.cna-header-content-wrapper {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  color: white;
  z-index: 1;
}

.cna-main-heading {
  font-family: 'Pathway Extreme', sans-serif;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.cna-header-description {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: #cbd5e1;
}

.cna-bonus-highlights {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.cna-bonus-card {
  width: 250px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cna-bonus-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.cna-bonus-icon {
  font-size: 2.5rem;
  color: #3b82f6;
  margin-bottom: 1rem;
}

.cna-bonus-title {
  font-family: 'Pathway Extreme', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: white;
}

.cna-bonus-amount {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #f59e0b;
}

.cna-bonus-details {
  font-size: 0.9rem;
  color: #cbd5e1;
}

.cna-primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: linear-gradient(45deg, #3b82f6, #6366f1);
  color: white;
  font-family: 'Pathway Extreme', sans-serif;
  font-size: 1.25rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.cna-primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
}

.cna-primary-button i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.cna-primary-button:hover i {
  transform: translateX(5px);
}

.cna-platform-showcase-section {
  padding: 4rem 2rem;
  background-color: #f1f5f9;
  display: flex;
  justify-content: center;
}

.cna-platform-card {
  width: 100%;
  max-width: 850px;
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  position: relative;
  border: 1px solid #e2e8f0;
}

.cna-platform-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  background-color: #f59e0b;
  color: white;
  padding: 0.5rem 2rem;
  font-family: 'Pathway Extreme', sans-serif;
  font-size: 0.9rem;
  transform: rotate(45deg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.cna-platform-header-area {
  padding: 2.5rem 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(145deg, #3b82f6 0%, #6366f1 100%);
}

.cna-platform-logo {
  height: 70px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.cna-platform-rating-box {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  backdrop-filter: blur(5px);
}

.cna-rating-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  margin-right: 0.5rem;
}

.cna-rating-value {
  font-family: 'Pathway Extreme', sans-serif;
  color: white;
  font-weight: bold;
  margin-right: 0.5rem;
}

.cna-rating-star {
  color: #f59e0b;
  font-size: 1.3rem;
}

.cna-bonus-offers-section {
  padding: 2rem 2.5rem;
  background-color: #f8fafc;
  border-bottom: 1px dashed #cbd5e1;
}

.cna-section-title {
  font-family: 'Pathway Extreme', sans-serif;
  color: #1e293b;
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 1.6rem;
}

.cna-bonus-list {
  list-style-type: none;
}

.cna-bonus-list-item {
  padding: 1rem 1.5rem;
  margin-bottom: 0.5rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: relative;
  padding-left: 2.5rem;
}

.cna-bonus-list-item::before {
  content: '';
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: #3b82f6;
  border-radius: 50%;
}

.cna-features-section {
  padding: 2rem 2.5rem;
}

.cna-features-list {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cna-feature-item {
  flex: 1 1 calc(50% - 1rem);
  width: 250px;
  padding: 1.2rem;
  background-color: #f8fafc;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.cna-feature-item:hover {
  background-color: #e0e7ff;
  transform: translateX(5px);
}

.cna-feature-icon {
  color: #3b82f6;
  font-size: 1.3rem;
  margin-left: 0.5rem;
}

.cna-platform-footer-area {
  padding: 1.5rem 2.5rem;
  background-color: #f1f5f9;
  text-align: center;
}

.cna-warning-text {
  font-size: 0.75rem;
  color: #64748b;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.cna-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: linear-gradient(45deg, #3b82f6, #6366f1);
  color: white;
  font-family: 'Pathway Extreme', sans-serif;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  width: 100%;
  max-width: 300px;
}

.cna-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.cna-cta-button i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.cna-cta-button:hover i {
  transform: rotate(15deg);
}

.cna-disclaimer-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 4rem 2rem;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.cna-disclaimer-container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.cna-disclaimer-heading {
  font-family: 'Pathway Extreme', sans-serif;
  font-size: 2rem;
  color: #1e293b;
  padding: 2rem;
  background-color: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cna-disclaimer-heading i {
  color: #f59e0b;
  font-size: 1.8rem;
}

.cna-disclaimer-content {
  display: flex;
  flex-wrap: wrap;
}

.cna-disclaimer-text-block {
  flex: 1 1 60%;
  padding: 2rem;
  min-width: 300px;
}

.cna-disclaimer-text-block p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: #334155;
}

.cna-disclaimer-link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
}

.cna-disclaimer-link:hover {
  text-decoration: underline;
}

.cna-disclaimer-logos {
  flex: 1 1 40%;
  padding: 2rem;
  min-width: 300px;
  background-color: #f8fafc;
  border-left: 1px solid #e2e8f0;
}

.cna-partners-title {
  font-family: 'Pathway Extreme', sans-serif;
  font-size: 1.3rem;
  color: #1e293b;
  margin-bottom: 1.5rem;
  text-align: center;
}

.cna-partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.cna-partner-logo-link {

  transition: all 0.3s ease;
}

.cna-partner-logo-link:hover {
  transform: translateY(-5px);
}

.cna-partner-logo {
  background: #1e40af;
  border-radius: 8px;
  filter: grayscale(30%);
  transition: filter 0.3s ease;
  border: 1px solid #e2e8f0;
  padding: 0.8rem;
}

.cna-partner-logo-link:hover .cna-partner-logo {
  filter: grayscale(0%);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .cna-disclaimer-content {
      flex-direction: column;
  }
  .cna-disclaimer-logos {
      border-left: none;
      border-top: 1px solid #e2e8f0;
  }
  .cna-disclaimer-heading {
      font-size: 1.7rem;
      padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .cna-disclaimer-section {
      padding: 3rem 1rem;
  }
  .cna-disclaimer-heading {
      font-size: 1.5rem;
  }
  .cna-partners-grid {
      gap: 1rem;
  }
  .cna-partner-logo {
      width: 140px;
      height: 70px;
  }
}

.cna-main-footer-section {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  padding: 3rem 2rem;
  color: #e2e8f0;
  position: relative;
  overflow: hidden;
}

.cna-main-footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../cna-imgs/cna-background-img-2.jpg') center/cover;
  opacity: 0.13;
  z-index: 0;
}

.cna-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.cna-footer-block {
  flex: 1 1 300px;
  padding: 1.5rem;
}

.cna-footer-icon {
  font-size: 2rem;
  color: #3b82f6;
  margin-bottom: 1rem;
  display: inline-block;
}

.cna-footer-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #94a3b8;
}

.cna-footer-link {
  color: #e2e8f0;
  text-decoration: none;
  font-family: 'Pathway Extreme', sans-serif;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: block;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
}

.cna-footer-link::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #3b82f6;
  transition: transform 0.3s ease;
}

.cna-footer-link:hover {
  color: #3b82f6;
  transform: translateX(5px);
}

.cna-footer-link:hover::before {
  transform: translateX(5px);
}

.cna-contact-link {
  color: #94a3b8;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  transition: color 0.3s ease;
}

.cna-contact-link:hover {
  color: #3b82f6;
}

.cna-copyright-text {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: #94a3b8;
}

.cna-legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(59, 130, 246, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  color: #94a3b8;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.cna-legal-badge i {
  color: #3b82f6;
}

.cna-cookie-notification-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #1e293b;
  padding: 1.5rem 2rem;
  z-index: 9998;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cna-cookie-message {
  flex: 1 1 300px;
  color: #94a3b8;
  font-size: 0.9rem;
}

.cna-cookie-policy-link {
  color: #3b82f6;
  text-decoration: none;
}

.cna-cookie-policy-link:hover {
  text-decoration: underline;
}

.cna-cookie-accept-btn {
  padding: 0.8rem 2rem;
  background-color: #3b82f6;
  color: white;
  border: none;
  border-radius: 50px;
  font-family: 'Pathway Extreme', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.cna-cookie-accept-btn:hover {
  background-color: #2563eb;
  transform: translateY(-3px);
}

@media (max-width: 1024px) {
  .cna-main-heading {
    font-size: 3rem;
  }
  .cna-header-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .cna-main-heading {
    font-size: 2.5rem;
  }
  .cna-bonus-card {
    width: 220px;
    padding: 1.5rem 1rem;
  }
  .cna-platform-badge {
    right: -40px;
    font-size: 0.8rem;
    padding: 0.4rem 1.8rem;
  }
  .cna-footer-container {
    flex-direction: column;
    gap: 1rem;
  }
  .cna-footer-block {
    flex: 1 1 auto;
    text-align: center;
    padding: 1rem 0;
  }
  .cna-footer-link {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .cna-main-heading {
    font-size: 2rem;
  }
  .cna-header-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .cna-bonus-highlights {
    flex-direction: column;
    align-items: center;
  }
  .cna-bonus-card {
    width: 100%;
    max-width: 300px;
  }
  .cna-feature-item {
    flex: 1 1 100%;
  }
  .cna-platform-badge {
    right: -45px;
    top: 15px;
  }
  .cna-cookie-notification-bar {
    padding: 1rem;
  }
}

@media (max-width: 320px) {
  .cna-main-heading {
    font-size: 1.8rem;
  }
  .cna-feature-item {
    width: 175px;
  }
  .cna-primary-button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  .cna-disclaimer-text-block p {
    font-size: 1rem;
    padding: 0.5rem 0.7rem;
  }
  .cna-platform-badge {
    display: none;
  }
}

.cna-pgs-cookie-section {
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  min-height: 100vh;
}

.cna-pgs-main-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.cna-pgs-header {
  padding: 2.5rem;
  background: linear-gradient(90deg, #3b82f6 0%, #6366f1 100%);
  color: white;
  text-align: center;
}

.cna-pgs-main-heading {
  font-family: 'Pathway Extreme', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.cna-pgs-main-heading i {
  font-size: 2rem;
}

.cna-pgs-intro-text {
  font-family: 'Manrope', sans-serif;
  opacity: 0.9;
  font-size: 0.9rem;
}

.cna-pgs-policy-items {
  padding: 2rem;
}

.cna-pgs-policy-item {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.cna-pgs-policy-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.cna-pgs-item-title {
  font-family: 'Pathway Extreme', sans-serif;
  font-size: 1.4rem;
  color: #1e293b;
  margin-bottom: 1rem;
}

.cna-pgs-item-content {
  font-family: 'Manrope', sans-serif;
  line-height: 1.7;
  color: #475569;
}

.cna-pgs-footer {
  padding: 1.5rem;
  text-align: center;
  background-color: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

.cna-pgs-footer a {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
}

.cna-pgs-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .cna-pgs-main-heading {
      font-size: 1.8rem;
      flex-direction: column;
      gap: 0.5rem;
  }
  .cna-pgs-header {
      padding: 1.5rem;
  }
  .cna-pgs-policy-items {
      padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .cna-pgs-main-heading {
      font-size: 1.6rem;
  }
  .cna-pgs-item-title {
      font-size: 1.2rem;
  }
}

.cna-pgs-privacy-main {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  min-height: 100vh;
  padding: 3rem 1rem;
}

.cna-pgs-privacy-wrapper {
  max-width: 850px;
  margin: 0 auto;
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(30, 41, 59, 0.1);
}

.cna-pgs-privacy-header {
  padding: 3rem 2rem;
  background: linear-gradient(145deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  text-align: center;
}

.cna-pgs-header-content {
  max-width: 600px;
  margin: 0 auto;
}

.cna-pgs-header-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cna-pgs-main-title {
  font-family: 'Pathway Extreme', sans-serif;
  font-size: 2.3rem;
  margin-bottom: 0.5rem;
}

.cna-pgs-subtitle {
  font-family: 'Manrope', sans-serif;
  opacity: 0.9;
  font-size: 1rem;
}

.cna-pgs-privacy-article {
  padding: 3rem;
}

.cna-pgs-privacy-section {
  margin-bottom: 3rem;
}

.cna-pgs-section-title {
  font-family: 'Pathway Extreme', sans-serif;
  font-size: 1.4rem;
  color: #1e40af;
  margin-bottom: 1rem;
}

.cna-pgs-section-text {
  font-family: 'Manrope', sans-serif;
  line-height: 1.8;
  color: #475569;
}

.cna-pgs-privacy-footer {
  padding: 2rem;
  text-align: center;
  background-color: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

.cna-pgs-contact-link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
}

.cna-pgs-contact-link:hover {
  text-decoration: underline;
}

.cna-pgs-update-date {
  font-size: 0.9rem;
  color: #64748b;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .cna-pgs-privacy-article {
      padding: 2rem;
  }
  .cna-pgs-privacy-header {
      padding: 2rem 1.5rem;
  }
  .cna-pgs-main-title {
      font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .cna-pgs-privacy-main {
      padding: 2rem 0.5rem;
  }
  .cna-pgs-section-title {
      font-size: 1.2rem;
  }
  .cna-pgs-privacy-section {
      margin-bottom: 2rem;
  }
}