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

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

a {
  color: inherit;
}

:root {
  --font-sans: "Space Grotesk", sans-serif;
  --font-display: "Fraunces", serif;
  --ink: #151515;
  --muted: #5a564f;
  --bg: #f6f3ee;
  --card: #ffffff;
  --accent: #ff6b35;
  --accent-2: #1e3d59;
  --accent-3: #2ec4b6;
  --stroke: #e4ddd1;
  --shadow: 0 24px 52px rgba(21, 21, 21, 0.10);
  --soft-shadow: 0 16px 34px rgba(21, 21, 21, 0.07);
  --radius: 26px;
  --radius-sm: 16px;
}

body {
  font-family: var(--font-sans);
  background:
    radial-gradient(720px 560px at 0% 86%, rgba(46, 196, 182, 0.34), transparent 66%),
    radial-gradient(740px 560px at 100% 12%, rgba(255, 209, 102, 0.48), transparent 68%),
    linear-gradient(180deg, #faf8f2 0%, #f6f3ee 45%, #f7f3ed 100%);
  color: var(--ink);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  display: none;
}

body::before {
  width: 520px;
  height: 520px;
  right: -180px;
  top: -140px;
  background: radial-gradient(circle, rgba(255, 209, 102, 0.8) 0%, rgba(255, 209, 102, 0) 70%);
}

body::after {
  width: 520px;
  height: 520px;
  left: -200px;
  bottom: -200px;
  background: radial-gradient(circle, rgba(46, 196, 182, 0.7) 0%, rgba(46, 196, 182, 0) 70%);
}

.container {
  width: min(1434px, calc(100% - 40px));
  margin: 0 auto;
}

/* =========================
   HEADER
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 243, 238, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--stroke);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 104px;
  padding: 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), #ffd166);
  color: #1b1b1b;
  font-weight: 700;
  display: grid;
  place-items: center;
  letter-spacing: 0.5px;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--accent-2);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* =========================
   BUTTONS
========================= */
.btn {
  min-height: 60px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent-2);
  color: #fff;
  box-shadow: 0 14px 24px rgba(30, 61, 89, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: #173248;
}

.btn-ghost {
  border-color: var(--stroke);
  background: #fff;
  color: var(--accent-2);
}

.btn-ghost:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-dark {
  background: #151515;
  color: #fff;
}

/* =========================
   HERO
========================= */
.hero {
  padding: 70px 0 40px;
}

/* =========================
   BOOKING PAGE
========================= */
.booking-page {
  padding-bottom: 40px;
}

.booking-hero {
  padding: 40px 0 10px;
}

.booking-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.booking-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 999px;
  background: #e8f0ff;
  color: #1e3d59;
  font-weight: 600;
  letter-spacing: 0.6px;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.booking-home {
  text-decoration: none;
  font-weight: 600;
  color: #1e3d59;
  border: 1px solid #c7d7f2;
  padding: 6px 14px;
  border-radius: 999px;
  background: #ffffff;
}

.booking-head {
  text-align: center;
  margin-top: 20px;
  display: grid;
  gap: 6px;
}

.booking-head h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.booking-head p {
  color: var(--muted);
  font-size: 1.28rem;
  font-weight: 500;
}

.booking-form {
  padding: 20px 0 60px;
}

.booking-card {
  max-width: 760px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 270px;
  padding: 34px;
  border: 1px solid var(--stroke);
}

.card-head {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}

.card-head span {
  font-size: 0.85rem;
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field span {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #dfe4ef;
  padding: 12px 14px;
  font-family: var(--font-sans);
  font-size: 1.12rem;
  font-weight: 600;
  background: #fdfdff;
}

.form-field textarea {
  resize: vertical;
}

.form-field--full {
  grid-column: 1 / -1;
}

.btn-submit {
  width: 100%;
  border: none;
  background: #1a7f4d;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 24px rgba(26, 127, 77, 0.24);
}

.btn-submit:hover {
  transform: translateY(-1px);
}

/* =========================
   FLAG + QUICK SERVICES
========================= */
.flag-quick {
  padding: 32px 0 10px
}

.flag-strip {
  background: #ffffff;
  border-radius: 30px;
  padding: 0;
  border: 1px solid var(--stroke);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.flag-strip img {
  width: 100%;
  height: 108px;
  object-fit: cover;
  border-radius: 0;
}

.quick-shell {
  margin-top: 28px;
  background: linear-gradient(100deg, #2e69f5 0%, #42adc2 100%);
  border-radius: 30px;
  padding: 26px;
  box-shadow: var(--shadow);
}

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

.quick-card {
  border-radius: 22px;
  padding: 26px;
  display: grid;
  gap: 18px;
  align-content: space-between;
  min-height: 196px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.quick-card h3 {
  font-size: 1.62rem;
  line-height: 1.2;
}

.quick-card--light {
  background: #ffe89a;
  color: #1c1c1c;
}

.quick-card--dark {
  background: #344784;
  color: #ffffff;
}

.quick-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 15px;
  border: 1px solid #1c1c1c;
  color: inherit;
  font-weight: 600;
  width: fit-content;
  background: rgba(255, 255, 255, 0.15);
}

.quick-btn--light {
  border-color: #ffffff;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin: 18px 0 16px;
}

.hero-copy p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff0d9;
  color: #9c4b23;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px 0 10px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.meta-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--stroke);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.panel-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--stroke);
}

.panel-card h3 {
  margin-bottom: 6px;
}

.panel-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.panel-row {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.panel-row input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  font-family: var(--font-sans);
}

.panel-foot {
  margin-top: 22px;
  font-size: 0.82rem;
  color: var(--muted);
}

.hero-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   SECTIONS
========================= */
.section {
  padding: 86px 0
}

.section-head {
  display: grid;
  gap: 16px;
  margin-bottom: 44px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 4.5vw, 3.9rem);
  line-height: 1.02;
}

.section-head p {
  color: var(--muted);
  max-width: 760px;
  font-size: 1.32rem;
  font-weight: 500;
}

.eyebrow {
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--accent-2);
}

/* =========================
   SERVICES
========================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  background: var(--card);
  border-radius: var(--radius);
  min-height: 350px;
  padding: 32px;
  border: 1px solid var(--stroke);
  box-shadow: var(--soft-shadow);
  display: grid;
  gap: 16px;
}

.service-card.highlight {
  background: linear-gradient(135deg, #fff7ec, #fff);
  border: 1px solid #f4d6b0;
}

.service-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--accent-3);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #0f2a2f;
}

.service-card h3 {
  font-size: 1.45rem;
  line-height: 1.35;
}

.service-card p {
  color: var(--muted);
}

.service-points {
  list-style: none;
  display: grid;
  gap: 8px;
}

.service-points li {
  position: relative;
  padding-left: 22px;
  font-size: 0.95rem;
}

.service-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

.text-link {
  font-weight: 600;
  text-decoration: none;
  color: var(--accent-2);
}

/* =========================
   PROCESS
========================= */
.process-steps {
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 20px;
}

.process-steps li {
  background: var(--card);
  border-radius: var(--radius-sm);
  min-height: 116px;
  padding: 24px 24px 24px 86px;
  border: 1px solid var(--stroke);
  position: relative;
}

.process-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 24px;
  top: 24px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #ffe0c2;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #7a3411;
}

.process-steps h4 {
  margin-bottom: 6px;
}

.process-steps p {
  color: var(--muted);
}

/* =========================
   DOCUMENTS
========================= */
.doc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.doc-card {
  background: var(--card);
  padding: 34px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
}

.doc-card ul {
  list-style: none;
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.doc-card li {
  position: relative;
  padding-left: 24px;
}

.doc-card li::before {
  content: "";
  width: 12px;
  height: 12px;
  background: #ffd166;
  border-radius: 4px;
  position: absolute;
  left: 0;
  top: 6px;
}

/* =========================
   FEES
========================= */
.fee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.fee-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.fee-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  background: #f1f7ff;
  color: var(--accent-2);
  border-radius: 999px;
  font-size: 0.82rem;
  width: fit-content;
}

/* =========================
   TRACKING
========================= */
.tracking {
  background: linear-gradient(135deg, #fef1dd, #e8f6f4);
  padding-top: 120px;
  padding-bottom: 88px;
}

.tracking-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: center;
}

.tracking-card {
  background: #ffffff;
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  box-shadow: var(--soft-shadow);
}

/* =========================
   FAQ
========================= */
.faq-list {
  display: grid;
  gap: 16px;
}

.faq-list details {
  background: var(--card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--stroke);
  padding: 24px;
}

.faq-list summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  margin-top: 10px;
  color: var(--muted);
}

/* =========================
   CONTACT
========================= */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.contact-card {
  background: var(--card);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  display: grid;
  gap: 14px;
}

.contact-card.accent {
  background: #1e3d59;
  color: #fff;
  border: 1px solid #1e3d59;
}

.contact-meta {
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.contact-card.accent .contact-meta {
  color: rgba(255, 255, 255, 0.8);
}

.contact-card.accent .btn {
  background: #fff;
  color: #1e3d59;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  padding: 26px 0 40px;
  border-top: 1px solid var(--stroke);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* =========================
   ANIMATIONS
========================= */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.3s;
}

.delay-3 {
  animation-delay: 0.45s;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .delay-1,
  .delay-2,
  .delay-3 {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* =========================
   MOBILE MENU
========================= */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--ink);
  display: block;
  border-radius: 3px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 980px) {
  .hero-grid,
  .tracking-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .quick-grid,
  .fee-grid,
  .doc-grid {
    grid-template-columns: 1fr;
  }

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

  .nav {
    position: absolute;
    top: 78px;
    right: 5%;
    background: #fff;
    flex-direction: column;
    width: min(260px, 80vw);
    padding: 20px;
    gap: 16px;
    display: none;
    box-shadow: var(--shadow);
    border-radius: var(--radius-sm);
    border: 1px solid var(--stroke);
  }

  .nav.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .footer-row {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 40px;
  }

  .panel-row {
    flex-direction: column;
    align-items: stretch;
  }
}


/* Screenshot-matched homepage refinements */
body {
  background:
    radial-gradient(720px 560px at 0% 86%, rgba(46, 196, 182, 0.34), transparent 66%),
    radial-gradient(740px 560px at 100% 12%, rgba(255, 209, 102, 0.48), transparent 68%),
    linear-gradient(180deg, #faf8f2 0%, #f6f3ee 45%, #f7f3ed 100%);
}

.container {
  width: min(1434px, calc(100% - 40px));
}

.header-row {
  min-height: 104px;
  padding: 0;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 15px;
}

.brand-text {
  font-size: 25px;
  font-weight: 700;
}

.nav {
  gap: 28px;
}

.nav a,
.btn,
.quick-btn,
.text-link {
  font-weight: 700;
}

.btn {
  min-height: 60px;
  padding: 0 28px;
}

.flag-quick {
  padding: 32px 0 10px;
}

.flag-strip {
  overflow: hidden;
  border-radius: 30px;
  padding: 0;
  box-shadow: var(--soft-shadow);
}

.flag-strip img {
  height: 108px;
  border-radius: 0;
}

.quick-shell {
  margin-top: 28px;
  padding: 26px;
  border-radius: 30px;
  background: linear-gradient(100deg, #2e69f5 0%, #42adc2 100%);
}

.quick-grid {
  gap: 22px;
}

.quick-card {
  min-height: 196px;
  padding: 32px;
}

.quick-card h3 {
  font-size: 1.62rem;
  line-height: 1.14;
}

.quick-btn {
  min-height: 56px;
  padding: 0 22px;
  border-radius: 15px;
}

.section {
  padding: 86px 0;
}

.services {
  padding-top: 10px;
}

.section-head {
  gap: 16px;
  margin-bottom: 44px;
}

.section-head h2 {
  font-size: clamp(2.7rem, 4.5vw, 3.9rem);
  line-height: 1.02;
}

.section-head p {
  max-width: 760px;
  font-size: 1.32rem;
  font-weight: 500;
}

.eyebrow {
  font-weight: 700;
  letter-spacing: 1.6px;
}

.service-grid,
.fee-grid {
  gap: 26px;
}

.service-card {
  min-height: 350px;
  padding: 32px;
  box-shadow: var(--soft-shadow);
}

.service-top {
  gap: 18px;
}

.service-icon {
  width: 54px;
  height: 54px;
}

.service-card h3 {
  font-size: 1.45rem;
  line-height: 1.35;
}

.service-card p {
  font-size: 1.28rem;
  font-weight: 500;
}

.service-points {
  gap: 16px;
}

.service-points li {
  font-size: 1.12rem;
  font-weight: 600;
}

.process-steps {
  gap: 24px;
}

.process-steps li {
  min-height: 116px;
  padding: 24px 24px 24px 86px;
}

.process-steps li::before {
  left: 24px;
  top: 24px;
  width: 44px;
  height: 44px;
}

.process-steps p {
  font-size: 1.2rem;
  font-weight: 500;
}

.doc-grid {
  gap: 28px;
}

.doc-card {
  padding: 34px 30px;
  box-shadow: var(--soft-shadow);
}

.doc-card ul {
  margin-top: 22px;
  gap: 18px;
}

.doc-card li {
  font-size: 1.12rem;
  font-weight: 500;
}

.fee-card {
  min-height: 220px;
  padding: 32px 30px;
  box-shadow: var(--soft-shadow);
}

.fee-card p {
  font-size: 1.18rem;
}

.tracking {
  padding-top: 120px;
  padding-bottom: 88px;
}

.tracking-grid {
  gap: 48px;
}

.tracking-card {
  padding: 36px;
  box-shadow: var(--soft-shadow);
}

.faq .eyebrow {
  display: none;
}

.faq-list {
  gap: 20px;
}

.faq-list details {
  padding: 24px;
}

.contact {
  padding-top: 64px;
}

.contact-grid {
  gap: 28px;
}

.contact-card {
  min-height: 270px;
  padding: 34px;
}

.contact-card.accent .btn {
  width: 100%;
  background: #fff;
  color: var(--accent-2);
}

@media (max-width: 980px) {
  .header-row {
    min-height: 84px;
    padding: 14px 0;
  }

  .nav {
    gap: 16px;
  }

  .quick-card,
  .service-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1434px);
  }

  .flag-strip img {
    height: 74px;
  }

  .quick-shell,
  .quick-card,
  .service-card,
  .doc-card,
  .fee-card,
  .tracking-card,
  .contact-card {
    padding: 22px;
    border-radius: 18px;
  }

  .section-head h2 {
    font-size: 2.45rem;
  }

  .section-head p,
  .service-card p,
  .process-steps p {
    font-size: 1.05rem;
  }
}


/* Success modal */
.success-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(18, 26, 35, 0.46);
  backdrop-filter: blur(5px);
}

.success-modal__card {
  width: min(100%, 430px);
  padding: 34px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--stroke);
  box-shadow: 0 30px 80px rgba(21, 21, 21, 0.22);
  text-align: center;
}

.success-modal__icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: #dcfce7;
  color: #15803d;
  font-size: 34px;
  font-weight: 800;
}

.success-modal__icon--error {
  background: #fee2e2;
  color: #b91c1c;
}

.success-modal__card h2 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 2rem;
}

.success-modal__card p {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 600;
}

.success-modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 20px;
  padding: 0 30px;
  border-radius: 999px;
  background: var(--accent-2);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}
