/* ========================================
   Lima Location Page
   ======================================== */

@font-face {
  font-family: "Google Sans Flex";
  src: url("../fonts/google-sans-flex-latin-ext-wght.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Google Sans Flex";
  src: url("../fonts/google-sans-flex-latin-wght.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin-wght.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #1e3a5f;
  --navy-deep: #152a45;
  --navy-card: #254a73;
  --navy-border: rgba(255, 255, 255, 0.16);
  --orange: #f05a28;
  --orange-hover: #d94e20;
  --peach: #f7e9e0;
  --peach-card: #f8ebe4;
  --gray-bg: #f1f3f5;
  --gray-light: #f7f7f7;
  --text: #1c1c1c;
  --text-muted: #5c5c5c;
  --white: #ffffff;
  --radius: 18px;
  --radius-sm: 14px;
  --radius-btn: 999px;
  --shadow: 0 8px 30px rgba(15, 42, 71, 0.08);
  --container: 1248px;
  --font: "Google Sans Flex", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.4em;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.section-heading {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2em;
  margin-bottom: 2.75rem;
  color: var(--text);
}

.eyebrow {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #9a9a9a;
  margin-bottom: 0.75rem;
  color: #c4a484;
}

.eyebrow--process {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  color: #a8783a;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12.5px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 1.75px;
  text-transform: uppercase;
}

.eyebrow--process::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: #a8783a;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem !important;
  font-family: inherit;
  font-size: 0.9rem !important;
  font-weight: 600;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

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

.btn--navy {
  background: #234198;
  color: var(--white);
}

.btn--navy:hover {
  background: #1c347a;
  color: white;
}

.btn--orange {
  background: var(--orange);
  color: var(--white);
}

.btn--orange:hover {
  background: var(--orange-hover);
  color: white;
}

.btn--dark {
  background: #1a1a1a;
  color: var(--white);
  padding: 0.7rem 1.4rem;
  font-size: 0.85rem;
}

.btn--dark:hover {
  background: #000;
  color: white;
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
    color: white;
}

/* ========== 1. Hero ========== */
.hero {
  position: relative;
  height: 317px;
  display: grid;
  place-items: center;
  background: url("../images/hero-lima.png") center / cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.45);
}

.hero__title {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.55);
  font-size: 73px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  top: 20%;
}

/* ========== 2. Intro ========== */
.intro {
  padding-top: 4.5rem;
  padding-bottom: 4rem;
}

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

.intro__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
}

.intro__content h2 {
  color: #4c4c4c;
  font-family: "Google Sans Flex", system-ui, sans-serif;
  font-size: 43px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2em;
  margin-bottom: 1.25rem;
}

.intro__content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.98rem;
}

.intro__content .btn {
  margin-top: 1rem;
}

/* ========== 3. About ========== */
.about {
  padding-top: 1rem;
  padding-bottom: 4rem;
}

.about__panel {
  background: var(--gray-bg);
  border-radius: var(--radius);
  padding: 3.75rem 3rem;
  text-align: center;
}

.about__panel h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2em;
  margin-bottom: 1rem;
}

.about__panel p {
  color: var(--text-muted);
/*  max-width: 640px;*/
  margin: 0 auto 1.75rem;
  font-size: 0.98rem;
}

/* ========== 4. Why Choose Us ========== */
.why {
  background: #234198;
  padding: 5rem 0;
}

.why__title {
  color: var(--white);
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2em;
  margin-bottom: 2.75rem;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.why-card {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  padding: 1.5rem 1.35rem;
}

.why-card:nth-child(-n + 3) {
  grid-column: span 2;
}

.why-card:nth-child(n + 4) {
  grid-column: span 3;
}

.why-card__icon {
  width: 28px;
  height: 28px;
  color: var(--white);
  margin-bottom: 0.85rem;
}

.why-card__icon svg {
  width: 100%;
  height: 100%;
}

.why-card h3 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.why-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.85rem;
  line-height: 1.4em;
}

.why__cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ========== 5. Services ========== */
.services {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: #fdf5f0;
  border: 1px solid #e8ddd4;
}

.service-card {
  background: #fdf5f0;
  border-radius: 0;
  padding: 2.75rem 2.25rem;
  border-right: 1px solid #e8ddd4;
  border-bottom: 1px solid #e8ddd4;
}

.service-card:nth-child(3n) {
  border-right: none;
}

.service-card:nth-child(n + 7) {
  border-bottom: none;
}

.service-card__num {
  display: block;
  color: #c4a484;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.85rem;
  letter-spacing: 0.02em;
}

.service-card h3 {
  color: #494949;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.2em;
}

.service-card p {
  color: #4a5568;
  font-size: 0.92rem;
  line-height: 1.4em;
}

/* ========== 6. Industries ========== */
.industries {
  position: relative;
  height: 570px;
  display: grid;
  place-items: center;
  padding: 0;
  background: url("../images/industries-bg.png") center / cover no-repeat;
}

.industries__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 30, 50, 0.35);
}

.industries .container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.industries__card {
  background: #234198;
  color: var(--white);
  text-align: center;
  border-radius: 24px;
  padding: 3rem 2.5rem;
  width: 80%;
  max-width: 80%;
}

.industries__card h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2em;
  margin-bottom: 1rem;
}

.industries__card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.4em;
}

/* ========== 7. Process ========== */
.process {
  padding-top: 5rem;
  padding-bottom: 4.5rem;
}

.process .section-heading {
  color: #4c4c4c;
  text-align: center;
  font-family: "Google Sans Flex", system-ui, sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 64px;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.process-step {
  position: relative;
  padding: 0.5rem 2rem;
  text-align: left;
}

.process-step:first-child {
  padding-left: 0;
}

.process-step:last-child {
  padding-right: 0;
}

.process-step:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #e5e5e5;
}

.process-step__num {
  display: block;
  color: rgba(168, 120, 58, 0.40);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 42px;
  font-style: normal;
  font-weight: 400;
  line-height: 42px;
  margin-bottom: 1rem;
}

.process-step h3 {
  color: #16233a;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 25.5px;
  margin-bottom: 0.75rem;
}

.process-step p {
  color: #55564e;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14.5px;
  font-style: normal;
  font-weight: 400;
  line-height: 23.2px;
}

/* ========== 8. Benefits & Service Areas ========== */
.split {
  padding-top: 2rem;
  padding-bottom: 4.5rem;
}

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

.split-card {
  background: #234198;
  color: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2.25rem;
}

.split-card h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2em;
  margin-bottom: 1.25rem;
}

.split-card p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.4em;
}

.split-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.split-card li {
  position: relative;
  padding-left: 1.35rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  line-height: 1.4em;
}

.split-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

/* ========== 9. FAQ ========== */
.faq {
  padding-top: 2rem;
  padding-bottom: 4.5rem;
}

.faq__panel {
  background: #fbebe3;
  border-radius: 24px;
  padding: 3.5rem 2.5rem;
}

.faq__panel > h2 {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2em;
  margin-bottom: 2rem;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  /* max-width: 820px;
  margin: 0 auto; */
}

.faq-item {
  background: transparent;
 /* border: 1px solid rgba(0, 0, 0, 0.12);*/
  border-radius: 24px;
  overflow: hidden;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.faq-item.is-open {
  background: var(--white);
  border-color: transparent;
  box-shadow: none;
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.35rem;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  cursor: pointer;
      outline: none !important;
}

.faq-item.is-open .faq-item__question {
  padding-bottom: 0.75rem;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  position: relative;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  background: #1a1a1a;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.faq-item__icon::before {
  width: 14px;
  height: 2px;
  top: 8px;
  left: 2px;
}

.faq-item__icon::after {
  width: 2px;
  height: 14px;
  top: 2px;
  left: 8px;
}

.faq-item.is-open .faq-item__icon::after {
  opacity: 0;
  transform: rotate(90deg);
}

.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-item.is-open .faq-item__answer {
  grid-template-rows: 1fr;
}

.faq-item__answer > p {
  overflow: hidden;
  padding: 0 1.35rem;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.4em;
}

.faq-item.is-open .faq-item__answer > p {
  padding-bottom: 1.35rem;
}

.faq__cta {
  text-align: center;
  margin-top: 2.25rem;
}

.faq__cta .btn {
  width: 260px;
  height: 60px;
  padding: 0;
  color: #fff;
  text-align: center;
  font-family: "Google Sans Flex", system-ui, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}

/* ========== 10. Final CTA ========== */
.cta {
  padding-top: 1rem;
  padding-bottom: 5rem;
}

.cta__panel {
  border-radius: 24px;
background: #F16522;
  padding: 4rem 2.5rem;
  text-align: center;
  color: var(--white);
}

.cta__panel h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2em;
  /* max-width: 720px; */
  margin: 0 auto 1rem;
}

.cta__panel > p {
  font-size: 1rem;
  opacity: 0.95;
  max-width:1080px;
  margin: 0 auto 2rem;
}

.cta__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem 4rem;
  margin-bottom: 2.5rem;
}

.cta__meta-item {
  display: inline-flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}

.cta__meta-text {
  display: flex;
  flex-direction: column;
  gap: 0.20rem;
}

.cta__meta-label {
  color: #fff;
  font-family: "Google Sans Flex", system-ui, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  text-transform: uppercase;
}

.cta__meta-value {
  color: #fff;
  font-family: "Google Sans Flex", system-ui, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

a.cta__meta-value:hover {
  text-decoration: underline;
}

.cta__meta-icon {
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.10);
}

.cta__meta-icon svg {
  display: block;
  flex-shrink: 0;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.cta__actions .btn--cta {
  width: 260px;
  height: 60px;
  padding: 0;
  font-family: "Google Sans Flex", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}

.cta__actions .btn--navy {
  background: #234198;
}

.cta__actions .btn--navy:hover {
  background: #234198;
  color: white;
}

/* ========== Responsive ========== */
@media (max-width: 960px) {
  .hero__title {
    font-size: 52px;
  }

  .section-heading,
  .why__title,
  .about__panel h2,
  .industries__card h2,
  .faq__panel > h2,
  .cta__panel h2,
  .intro__content h2 {
    font-size: 36px;
  }

  .process .section-heading {
    font-size: 36px;
    line-height: 48px;
  }

  .split-card h2 {
    font-size: 28px;
  }

  .process-step__num {
    font-size: 36px;
    line-height: 36px;
  }

  .intro__grid,
  .split__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .intro__media img {
    min-height: 260px;
  }

  .why__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .why-card:nth-child(-n + 3),
  .why-card:nth-child(n + 4),
  .why-card:nth-child(5) {
    grid-column: span 1;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    border-right: 1px solid #e8ddd4;
    border-bottom: 1px solid #e8ddd4;
  }

  .service-card:nth-child(3n) {
    border-right: 1px solid #e8ddd4;
  }

  .service-card:nth-child(2n) {
    border-right: none;
  }

  .service-card:nth-child(n + 7) {
    border-bottom: 1px solid #e8ddd4;
  }

  .service-card:nth-child(n + 9) {
    border-bottom: none;
  }

  .process__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem 0;
  }

  .process-step {
    padding: 0 1.25rem;
  }

  .process-step:nth-child(odd) {
    padding-left: 0;
  }

  .process-step:nth-child(even) {
    padding-right: 0;
  }

  .process-step:nth-child(3)::before,
  .process-step:first-child::before {
    display: none;
  }

  .process-step:nth-child(even)::before {
    display: block;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 2rem 0;
  }

  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  /* 1–4: tighter spacing */
  .hero {
    height: 200px;
  }

  .hero__title {
    font-size: 32px;
  }

  .intro {
    padding-top: 1.75rem;
    padding-bottom: 1.5rem;
  }

  .intro__grid {
    gap: 1.25rem;
    text-align: center;
  }

  .intro__media img {
    min-height: 220px;
  }

  .intro__content h2 {
    font-size: 26px;
    margin-bottom: 0.85rem;
  }

  .intro__content p {
    font-size: 0.9rem;
    text-align: justify;
  }

  .intro__content .btn {
    margin-top: 0.75rem;
  }

  .about {
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
  }

  .about__panel {
    padding: 1.75rem 1.25rem;
    text-align: center;
  }

  .why {
    padding: 2rem 0;
  }

  .why__title {
    font-size: 26px;
    margin-bottom: 1.25rem;
  }

  .why__grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .why-card {
    text-align: center;
    padding: 1.25rem 1.15rem;
  }

  .why-card__icon {
    margin-left: auto;
    margin-right: auto;
  }

  .why__cta {
    margin-top: 1.5rem;
  }

  /* Remaining sections: tighter + centered cards */
  .services {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .section-heading {
    margin-bottom: 1.25rem;
  }

  .section-heading,
  .about__panel h2,
  .industries__card h2,
  .faq__panel > h2,
  .cta__panel h2 {
    font-size: 26px;
  }

  .process .section-heading {
    font-size: 26px;
    line-height: 34px;
  }

  .split-card h2 {
    font-size: 22px;
  }

  .eyebrow {
    font-size: 0.68rem;
  }

  .services__grid,
  .process__grid,
  .split__grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    text-align: center;
    padding: 1.75rem 1.35rem;
  }

  .service-card__num {
    display: inline-block;
  }

  .service-card,
  .service-card:nth-child(3n),
  .service-card:nth-child(2n),
  .service-card:nth-child(n + 7),
  .service-card:nth-child(n + 9) {
    border-right: none;
    border-bottom: 1px solid #e8ddd4;
  }

  .service-card:last-child {
    border-bottom: none;
  }

  .industries {
    height: auto;
    min-height: 420px;
    padding: 2rem 0;
  }

  .industries__card {
    width: 92%;
    max-width: 92%;
    padding: 1.75rem 1.25rem;
    text-align: center;
  }

  .process {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .process__grid {
    gap: 1.5rem;
  }

  .process-step,
  .process-step:first-child,
  .process-step:last-child,
  .process-step:nth-child(odd),
  .process-step:nth-child(even) {
    padding: 0;
    text-align: center;
  }

  .process-step:not(:first-child)::before {
    display: none;
  }

  .process-step__num {
    font-size: 36px;
    line-height: 36px;
    margin-bottom: 0.65rem;
  }

  .process-step h3 {
    font-size: 16px;
    line-height: 24px;
  }

  .process-step p,
  .why-card p,
  .service-card p,
  .faq-item__answer > p {
    font-size: 0.88rem;
  }

  .split {
    padding-top: 1rem;
    padding-bottom: 2rem;
  }

  .split__grid {
    gap: 1rem;
  }

  .split-card {
    text-align: center;
    padding: 1.75rem 1.35rem;
  }

  .split-card li {
    padding-left: 0;
    text-align: center;
  }

  .split-card li::before {
    display: none;
  }

  .faq {
    padding-top: 1rem;
    padding-bottom: 2rem;
  }

  .faq__panel {
    padding: 1.75rem 1.15rem;
  }

  .faq__panel > h2 {
    margin-bottom: 1.25rem;
  }

  .faq__cta {
    margin-top: 1.5rem;
  }

  .faq__cta .btn {
    width: 100%;
    max-width: 260px;
  }

  .about__panel p,
  .industries__card p,
  .split-card p,
  .split-card li {
    font-size: 0.9rem;
  }

  .btn {
    font-size: 0.85rem !important;
    padding: 0.8rem 1.5rem !important;
  }

  .why-card h3,
  .service-card h3,
  .faq-item__question {
    font-size: 0.9rem;
  }

  /* Orange CTA: contact left-aligned */
  .cta {
    padding-top: 0.75rem;
    padding-bottom: 2rem;
  }

  .cta__panel {
    padding: 2rem 1.25rem;
  }

  .cta__panel h2 {
    font-size: 26px;
  }

  .cta__panel > p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .cta__meta {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    width: 100%;
  }

  .cta__meta-item {
    width: 100%;
    text-align: left;
  }

  .cta__meta-text {
    text-align: left;
  }

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

  .cta__actions .btn--cta {
    width: 100%;
    max-width: 260px;
  }
}




.my-btn{
  border-radius: 0px !important;
}