* {
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--text-dark);
}

/* Next section */

.consult-hero {
  /* min-height: 100vh; */
  background: linear-gradient(180deg, #2b5cff 0%, #3f46d8 100%);
  position: relative;
  font-family: "Inter", sans-serif;
  color: #ffffff;
  padding: 70px 20px;
}

/* Content Center */
.hero-content {
  text-align: center;
}

/* Main Heading */
.hero-content h1 {
  font-size: 60px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

/* Sub Heading */
.hero-content h2 {
  font-size: 27px;
  font-weight: 600;
  color: #dbe7ff;
  margin-bottom: 40px;
}

/* Paragraphs */
.hero-content p {
  max-width: 900px;
  margin: auto;
  font-size: 20px;
  line-height: 1.7;
  color: #eef3ff;
  margin-bottom: 26px;
}

/* ===== HERO FADE ANIMATION ===== */
.hero-fade {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  transition:
    opacity .8s ease-out,
    transform 1s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}

.hero-fade.show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content h2 {
    font-size: 22px;
  }

  .hero-content p {
    font-size: 16px;
  }
}

/* Next section */
.expect-section {
  background: #ffffff;
  overflow-x: hidden;
  padding: 60px 20px;

}

.expect-container {
  max-width: 1200px;
  margin: auto;
}

.expect-title {
  font-size: 48px;
  font-weight: 500;
  text-align: center;
  color: #0f172a;
  margin-bottom: 15px;
}

.expect-subtitle {
  text-align: center;
  font-size: 23px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 40px;
}

/* STEP CARD */
.step-card {
  background: #f7fafc;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 40px;
}

/* HEADER */
.step-header {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-header h3 {
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #0f172a;
}

.time-badge {
  background: #e0ecff;
  color: #2563eb;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 999px;
  margin-left: 10px;
  font-weight: 600;
}

.step-desc {
  font-size: 17px;
  color: #475569;
  margin-top: 8px;
}

/* INNER CARD */
.inner-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 24px;
  margin-top: 25px;
}

.inner-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.inner-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.inner-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #334155;
  margin-bottom: 12px;
}

.inner-card i {
  color: #2563eb;
  font-size: 18px;
}

/* ===== CARD BASE (NO BLINK FIX) ===== */
.step-card {
  opacity: 0;
  visibility: hidden;
  transform: translateX(0);
  will-change: transform, opacity;
}

/* LEFT */
.step-card.from-left {
  transform: translateX(-160px);
}

/* RIGHT */
.step-card.from-right {
  transform: translateX(160px);
}

/* SHOW STATE */
.step-card.step-show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition:
    opacity 1.4s ease,
    transform 2s cubic-bezier(0.22, 1, 0.36, 1);
}


/* Next section */
.promise-section {
  background: #ffffff;
  padding: 0px 20px;
  overflow-x: hidden;
}

.promise-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.promise-card {
  background: #f4f8ff;
  border: 1px solid #dbe7ff;
  border-radius: 18px;
  padding: 25px 20px;
}

/* TITLE */
.promise-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1d4ed8;
  /* exact blue */
  margin-bottom: 12px;
}

/* TEXT */
.promise-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #334155;
  margin: 0;
}

/* ===== PROMISE CARD ANIMATION ===== */
.promise-card {
  opacity: 0;
  visibility: hidden;
  transform: translateX(160px);
  will-change: transform, opacity;
}

/* SHOW STATE */
.promise-card.promise-show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition:
    opacity 1.5s ease,
    transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .promise-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .promise-container {
    grid-template-columns: 1fr;
  }
}

/* Next Section  */

.consultation-section {
  padding: 60px 20px;
  text-align: center;
  background: #f7fafc;
  margin-top: 80px;
}

.consultation-section h1 {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.subtitle {
  font-size: 23px;
  color: #555;
  font-weight: 600;
  margin-bottom: 40px;
}

.form-card {
  max-width: 800px;
  background: #fff;
  margin: auto;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.form-card h2 {
  margin: 10px 0 30px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 1px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

label {
  font-size: 14px;
  color: #444;
  font-weight: 600;
  margin-bottom: 6px;
}

input,
select,
textarea {
  padding: 17px;
  border-radius: 10px;
  border: 1px solid #dcdfe6;
  font-size: 16px;
}

.red-bold {
  color: red;
}

textarea {
  resize: none;
  min-height: 120px;
}

small {
  margin-top: 6px;
  color: #888;
  font-size: 13px;
}

.radio-group label {
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
}

.checkbox {
  display: flex;
  gap: 10px;
  margin: 20px 0;
  font-size: 14px;
}

.submit-btn {
  width: 100%;
  padding: 18px;
  background: linear-gradient(90deg, #2563eb, #6d28d9);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.submit-btn:hover {
  opacity: 0.9;
}

.footer-text {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-top: 20px;
}

/* ===== SUBMIT BUTTON HOVER EFFECT ===== */
.submit-btn {
  transition: background 0.5s ease;
}

.submit-btn i:last-child {
  transition: transform 0.4s ease;
}

/* Hover */
.submit-btn:hover {
  background: linear-gradient(90deg, #1e40af, #4c1d95);
}

.submit-btn:hover i:last-child {
  transform: translateX(6px);
}


@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Next section  */
.contact-section {
  max-width: 1200px;
  margin: 80px auto;
  text-align: center;
  overflow-x: hidden;
}

.main-title {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #0f172a;
}

.sub-title {
  font-size: 23px;
  margin-top: 15px;
  font-weight: 600;
  color: #334155;
}

.card-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.contact-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 40px 32px;
  text-align: left;
}

.icon-box {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

.icon-box.blue {
  background: #3b5cff;
}

.icon-box.green {
  background: #16a34a;
}

.icon-box.purple {
  background: #9333ea;
}

.contact-card h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  color: #0f172a;
}

.contact-card p {
  font-size: 15px;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 14px;
}

.contact-card a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.green-text {
  color: #16a34a;
  font-weight: 500;
  margin-top: 18px;
}

.green-text.green-para {
  color: #16a34a;
  font-weight: 600;
  margin-top: 18px;
}

.green-para i {
  font-weight: 600;
  color: #16a34a;
}

.green-text p {
  color: #16a34a;
}

.hours {
  font-size: 13px;
  margin-top: 10px;
}

.hours.date {
  font-size: 14px;
  margin-top: 15px;
}

.direction-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 15px;
  font-weight: 600;
  color: #0c4acf;
}

.direction-link.cont {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 600;
  color: #0c4acf;
}

.cont i {
  font-weight: 700;
}

/* ===== CONTACT CARD ANIMATION ===== */
.contact-card {
  will-change: opacity, transform;
}

/* LEFT CARD */
.contact-card.from-left {
  opacity: 0;
  transform: translateX(-120px);
}

/* RIGHT CARD */
.contact-card.from-right {
  opacity: 0;
  transform: translateX(120px);
}

/* SHOW STATE */
.contact-card.contact-show {
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 1s ease,
    transform 2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Social Media Section */
.social-section {
  text-align: center;
  margin: 70px 0 20px;
}

.social-title {
  font-size: 20px;
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 24px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.social-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  text-decoration: none;
}

/* Exact colors */
.social-box.linkedin {
  background: #2563eb;
}

.social-box.twitter {
  background: #0ea5e9;
}

.social-box.youtube {
  background: #dc2626;
}

/* ===== FIXED SOCIAL HOVER (NO LAYOUT SHIFT) ===== */
.social-box {
  transition: transform 0.3s ease;
  transform-origin: center;
  will-change: transform;
}

.social-box:hover {
  transform: scale(1.15) translateZ(0);
}



/* Next section */

.rwa-faq-section {
  padding: 60px 20px;
  background: #f7fafc;
  overflow-x: hidden;
}

.rwa-faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.rwa-faq-title {
  text-align: center;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.rwa-faq-subtitle {
  text-align: center;
  font-size: 23px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 48px;
}

.rwa-faq-category {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #334155;
  margin-bottom: 16px;
}

.rwa-faq-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px 20px;
  margin-bottom: 18px;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

/* Question */
.rwa-faq-q {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

/* Answer */
.rwa-faq-a {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: #334155;
}

/* ===== ANIMATION ===== */
.rwa-fade-card {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.4s ease,
    transform 0.5s ease;
}

.rwa-fade-card.rwa-visible {
  opacity: 1;
  transform: translateY(0);
}


/* Next section */
.ep-section {
  padding: 60px 20px;
}

.ep-container {
  max-width: 900px;
  margin: 0 auto;
}

.ep-title {
  text-align: center;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.ep-subtitle {
  text-align: center;
  font-size: 23px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 50px;
}

/* Timeline */
.ep-timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Each row */
.ep-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 28px;
}

/* Left column */
.ep-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Number circle */
.ep-circle {
  width: 54px;
  height: 54px;
  background: linear-gradient(180deg, #2563eb, #1d4ed8);
  color: #ffffff;
  font-size: 19px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Vertical line */
.ep-line {
  width: 2px;
  flex-grow: 1;
  margin-top: 10px;
  background: linear-gradient(to bottom,
      #c7d2fe,
      rgba(199, 210, 254, 0));
}

/* Right content */
.ep-content {
  padding-top: 2px;
  /* 🔥 aligns heading straight with number */
}

.ep-heading-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.ep-heading {
  font-size: 17px;
  font-weight: 600;
  margin: 0;
}

/* 🔥 Square-ish blue badge */
.ep-badge {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  background: #e0ecff;
  color: #1d4ed8;
  border-radius: 4px;
  white-space: nowrap;
}

.ep-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

/* Hide line for last item */
.ep-item:last-child .ep-line {
  display: none;
}

.ep-line {
  width: 2px;
  margin-top: 10px;
  flex-grow: 1;
  min-height: 48px;
  /* 🔥 ensures visibility */
  background: linear-gradient(to bottom,
      #c7d2fe 0%,
      rgba(199, 210, 254, 0) 100%);
  min-height: 60px;
}

/* Next section */

/* Section */
.strategic-partnerships {
  background: #f7fafc;
  padding: 60px 20px;
}

/* Center wrapper */
.sp-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.sp-header {
  text-align: center;
  margin-bottom: 48px;
}

.sp-header h2 {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #0f172a;
  margin-bottom: 15px;
}

.sp-header p {
  font-size: 23px;
  font-weight: 600;
  color: #444;
}

/* Cards layout */
.sp-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Card */
.sp-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px 24px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e7eb;
}

/* Icon */
.sp-icon {
  width: 44px;
  height: 44px;
  background: #304ffe;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.sp-icon i {
  color: #ffffff;
  font-size: 22px;
}

/* Text */
.sp-card h5 {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
}

.sp-card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 14px;
}

.sp-card a {
  font-size: 15px;
  font-weight: 500;
  color: #2563eb;
  text-decoration: none;
}

.sp-card a:hover {
  text-decoration: underline;
}

/* ===== Card Animation ===== */
.sp-card {
  opacity: 0;
  transform: translateX(60px);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Visible state */
.sp-card.sp-show {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 992px) {
  .sp-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .sp-cards {
    grid-template-columns: 1fr;
  }
}

/* Next section */
/* Base */
/* Section */
.media-career-section {
  background: #ffffff;
  padding: 80px 20px;
  overflow-x: hidden;
}

.mc-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* LEFT CARD */
.media-card {
  background: #f7fafc;
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e7eb;
}

.media-icon {
  width: 48px;
  height: 48px;
  background: #7c3aed;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.media-icon i {
  color: #ffffff;
  font-size: 22px;
}

.media-card h3 {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #0f172a;
  margin-bottom: 10px;
}

.media-sub {
  font-size: 16px;
  color: #475569;
  margin-bottom: 20px;
}

.media-line {
  font-size: 15px;
  color: #0f172a;
  margin-bottom: 10px;
}

.media-line a {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

.media-card h6 {
  margin-top: 22px;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
}

.media-card ul {
  margin: 12px 0 24px;
  padding-left: 18px;
}

.media-card ul li {
  font-size: 15px;
  color: #475569;
  margin-bottom: 8px;
}

.media-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

/* RIGHT CARD */
.career-card {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  border-radius: 22px;
  padding: 44px;
  color: #ffffff;
}

.career-icon {
  width: 48px;
  height: 48px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.career-icon i {
  color: #2563eb;
  font-size: 22px;
}

.career-card h3 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.career-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.career-card p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* Buttons */
.career-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #ffffff;
  color: #2563eb;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
}

/* .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.4);
  color: #ffffff;
  text-decoration: none;
} */

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  text-decoration: none;
  background: transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  /* 🔥 bright effect */
  border-color: rgba(255, 255, 255, 0.7);
}


/* ===== Media & Career Card Animation ===== */
.media-card,
.career-card {
  opacity: 0;
  transform: translateY(-40px);
  transition:
    opacity 1s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.media-card.mc-show,
.career-card.mc-show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .mc-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Next section */

/* CTA Section */
.cta-section {
  background: radial-gradient(ellipse at center,
      #1f2937 0%,
      #0b1220 60%,
      #050914 100%);
  padding: 70px 20px;
  overflow-x: hidden;
  color: #ffffff;
  text-align: center;
}

/* Wrapper */
.cta-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

/* Headings */
.cta-wrapper h2 {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.cta-wrapper p {
  font-size: 23px;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 36px;
}


.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #1e5eff;
  color: #ffffff;
  padding: 16px 34px;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.cta-button:hover {
  background: #1747cc;
  /* 🔥 slightly darker */
}

.cta-button:hover .arrow {
  transform: translateX(6px);
  /* 🔥 arrow move right */
}

/* Contact Info */
.cta-contact {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 16px;
  font-weight: 600;
  color: #e5e7eb;
}

.cta-contact div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-contact i {
  font-size: 18px;
  opacity: 0.9;
}

/* ===== CTA Fade In Animation ===== */
.cta-wrapper>* {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 1s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.cta-wrapper>*.cta-show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-wrapper h2 {
    font-size: 36px;
  }

  .cta-wrapper p {
    font-size: 18px;
  }

  .cta-button {
    font-size: 16px;
    padding: 14px 26px;
  }
}