:root {
  --black: #000;
  --white: #fff;
  --black-10: #0000001a;
  --blue-cta: #0c2367;
  --green-teal: #017186;
  --green-teal-10: #0171861a;
  --gray-medium: #363636;
  --gray-light: #eaedf2;
  --gray-border: #00000033;
  --gray-divider: #4f4f4f;
  --gray-footer: #808080;
  --gray-bar: #e0e0e0;
  --gray-update-bg: #f9f9f9;
  --red-main: #d74034;
  --red-secondary: #ee404c;
  --red-bg: #fdf1f0;
  --feature-yellow-bg: #f9f3e7;
  --feature-yellow-bg-20: #f9f3e733;
  --testimonial-item-border: #b7b7b7;
  --review-bg: #fcfbf9;
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.15);
  --shadow-cta: rgba(133, 133, 133, 0.3);
  --bottom-cta-bg: linear-gradient(265.98deg, #f8f2e4 19.65%, #fbfaf9 108.67%);
  --bottom-cta-bg-mobile: linear-gradient(
    8.42deg,
    #f8f2e4 43.12%,
    #fbfaf9 79.18%
  );
  --linen: #f9f3e7;
}

/* 1. Remove sizing inconsistencies */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. Zero default margin*/
* {
  margin: 0;
}

html,
body {
  overscroll-behavior-y: none;
}

/* 3. Improve typography in elements that use line-height */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  font-weight: 500;
}

/* 4. Images, videos, canvas, etc. do not overflow the container */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 5. Remove default form styles */
input,
button,
textarea,
select {
  font: inherit;
}

/* 6. Prevent very long texts from breaking the layout */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* 7. Create a stacking context root */
#root,
#__next {
  isolation: isolate;
}

header {
  background-color: var(--black);
  color: var(--black);
  display: flex;
  justify-content: center;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  width: 100%;
  max-width: 1157px;
}

.header-logo {
  width: auto;
  height: 40px;
  padding: 5px 0 0 0;
}

.header-trending strong {
  color: var(--white);
}

main {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 17px;
  padding: 40px 0 50px 0;
  margin: 0 auto;
  width: 100%;
}

.left-content {
  max-width: 774px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.main-title {
  font-size: 35px;
  line-height: 130%;
  margin-bottom: 1px;
  font-weight: 700;
}

.main-title span {
  background-color: var(--green-teal);
  color: var(--white);
  padding: 0 1px;
}

.headline {
  border-left: 4px solid var(--black);
  background: var(--linen);
  padding: 10px 16px;
}

.headline-text {
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
}

.time-date {
  font-size: 14px;
  line-height: 24px;
  color: var(--gray-medium);
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 5px;
}

br.mobile {
  display: none;
}

br.mobile-480 {
  display: none;
}

.hidden-mob {
  display: none;
}

.secondary-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 120%;
  margin-bottom: 5px;
}

.secondary-title.mobile {
  display: none;
  font-size: 21px;
  font-weight: 700;
  line-height: 135%;
  margin-bottom: 5px;
}

.tldr-container {
  background-color: var(--green-teal-10);
  padding: 16px;
}

.tldr-container h3 {
  font-size: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--green-teal);
}

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

.tldr-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.tldr-item p {
  font-size: 16px;
}

.offer-cta {
  color: var(--blue-cta);
  font-weight: 700;
  text-underline-offset: 3px;
}

.offer-cta-teal {
  color: var(--green-teal);
  font-weight: 700;
  text-decoration: none;
}

.feature-red {
  background-color: var(--red-bg);
  padding: 16px;
  border-radius: 8px;
}

.feature-red span {
  font-weight: 700;
  color: var(--red-main);
}

.tertiary-title {
  font-size: 20px;
  font-weight: 600;
}

.quote-text {
  font-style: italic;
  font-weight: 700;
}

.feature-yellow {
  background-color: var(--feature-yellow-bg);
  border-radius: 8px;
  padding: 16px;
}

.feature-yellow .feature-yellow-text {
  font-weight: 700;
}

.feature-yellow .feature-yellow-text.alt {
  font-weight: 600;
}

.teal-title {
  border-radius: 4px;
  background-color: var(--green-teal);
  display: inline-block;
  color: var(--white);
  text-transform: uppercase;
  font-size: 18px;
  padding: 4px 8px;
  margin-bottom: 10px;
}

.health-metrics-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.metric-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.metric-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.metric-icon {
  width: 24px;
  height: 24px;
  color: var(--red-secondary);
  flex-shrink: 0;
}

.metric-label-score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 12px;
}

.metric-label {
  font-weight: 700;
}

.metric-score {
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
}

.metric-score span.red {
  color: var(--red-secondary);
}

.metric-badge {
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.metric-bar-container {
  width: 100%;
  height: 16px;
  background-color: var(--gray-bar);
  border-radius: 100px;
  overflow: hidden;
}

.metric-bar {
  height: 100%;
  background-color: var(--red-main);
  border-radius: 100px;
  transition: width 0.3s ease;
}

.metric-bar.sleep {
  width: 38%;
}

.metric-bar {
  width: 15%;
}

.metric-bar.heart {
  width: 26%;
}

.metric-details {
  list-style: none;
  padding: 0 16px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.metric-details li {
  position: relative;
  padding-left: 1em; /* space for bullet */
}

.metric-details li::before {
  content: "•"; /* custom bullet */
  position: absolute;
  left: 0;
  top: 0;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 26px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

/* --- remove item border --- */
.feature-item {
  display: flex;
  gap: 4px;
  padding: 0 0 8px;
  align-items: center;
}

/* --- CONTINUOUS BORDERS ON DESKTOP --- */
.features .feature-item:nth-child(odd) {
  position: relative;
}

.features .feature-item:nth-child(odd)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  background: var(--green-teal);
  width: calc(200% + 26px); /* 2 columns + gap between them */
}

.feature-item h3 {
  font-size: 16px;
  font-weight: 700;
}

.feature-item p {
  margin: 4px 0 0;
  font-size: 16px;
}

.features.mobile {
  display: none;
}

.calendar-container {
  border: 1px solid var(--black-10);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.calendar-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.calendar-header h3 {
  font-size: 18px;
}

.calendar-container p {
  padding: 0 60px 0 50px;
}

.update {
  border: 1px solid var(--green-teal);
  background-color: var(--gray-update-bg);
}

.update-header {
  padding: 8px 16px;
  font-size: 18px;
  color: var(--green-teal);
  background-color: var(--green-teal-10);
}

.update-texts {
  font-size: 16px;
  padding: 8px 16px;
}

.update-texts p {
  color: var(--green-teal);
}

.compare-container {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
}

.compare-container div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.compare-container h3 {
  font-size: 18px;
}

.tldr-alt .tldr-item {
  padding: 0 16px;
}

.tldr-alt .tldr-item p {
  font-size: 18px;
}

strong {
  font-weight: 700 !important;
}

strong.teal {
  color: var(--green-teal);
}

hr {
  border: none;
  height: 1px;
  background-color: var(--gray-divider);
}

hr.dark {
  height: 2px;
  background-color: var(--black);
}

.reviews {
  margin-top: 5px;
  display: grid;
  gap: 20px;
}

.reviews .reviews-item {
  display: grid;
  gap: 10px;
  background-color: var(--review-bg);
  border-radius: 8px;
  padding: 16px;
}

.reviews .reviews-item img {
  width: auto;
  height: 16px;
}

/* FAQ Accordion Styles */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  border-bottom: 1px solid var(--gray-border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding-bottom: 15px;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
  font-size: 18px;
  line-height: 140%;
  background: none;
}

.faq-question > span:first-child {
  flex: 1;
  font-weight: 600;
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-left: 16px;
  transition: opacity 0.2s ease;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 9V15M15 12H9M21 12C21 13.1819 20.7672 14.3522 20.3149 15.4442C19.8626 16.5361 19.1997 17.5282 18.364 18.364C17.5282 19.1997 16.5361 19.8626 15.4442 20.3149C14.3522 20.7672 13.1819 21 12 21C10.8181 21 9.64778 20.7672 8.55585 20.3149C7.46392 19.8626 6.47177 19.1997 5.63604 18.364C4.80031 17.5282 4.13738 16.5361 3.68508 15.4442C3.23279 14.3522 3 13.1819 3 12C3 9.61305 3.94821 7.32387 5.63604 5.63604C7.32387 3.94821 9.61305 3 12 3C14.3869 3 16.6761 3.94821 18.364 5.63604C20.0518 7.32387 21 9.61305 21 12Z' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.faq-item.active .faq-icon {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 12H9M21 12C21 13.1819 20.7672 14.3522 20.3149 15.4442C19.8626 16.5361 19.1997 17.5282 18.364 18.364C17.5282 19.1997 16.5361 19.8626 15.4442 20.3149C14.3522 20.7672 13.1819 21 12 21C10.8181 21 9.64778 20.7672 8.55585 20.3149C7.46392 19.8626 6.47177 19.1997 5.63604 18.364C4.80031 17.5282 4.13738 16.5361 3.68508 15.4442C3.23279 14.3522 3 13.1819 3 12C3 9.61305 3.94821 7.32387 5.63604 5.63604C7.32387 3.94821 9.61305 3 12 3C14.3869 3 16.6761 3.94821 18.364 5.63604C20.0518 7.32387 21 9.61305 21 12Z' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 0 15px 0;
}

.testimonials-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-item {
  padding: 16px 13px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-bottom: 1px solid var(--testimonial-item-border);
}

.testimonial-item .testimonial-web {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-item .testimonial-mobile {
  display: none;
}

.testimonial-item:last-child {
  border-bottom: none;
}

.testimonial-item-profile {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
}

.testimonial-item-profile > img {
  border-radius: 10px;
}

.testimonial-mobile-header > img {
  border-radius: 7.32px;
}

.testimonial-item-profile > img,
.testimonial-mobile-header > img {
  border: 1px solid var(--green-teal);
}

.testimonial-item-profile-texts .testimonial-quote {
  font-size: 20px;
  margin-bottom: 10px;
}

.testimonial-item > p {
  font-style: italic;
}

.bottom-cta {
  background: var(--bottom-cta-bg);
  max-width: 1173px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
  border-radius: 10px;
  position: relative;
  padding: 6px 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
}

.bottom-cta-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 631px;
  gap: 15px;
  text-align: center;
}

.bottom-cta .bottom-cta-title {
  font-size: 28px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-teal);
}

.bottom-cta-details p {
  font-size: 16px;
  font-weight: 400;
}

.bottom-cta-details p span:first-child {
  font-weight: 700;
  color: var(--green-teal);
  text-transform: uppercase;
}

.bottom-cta-details p span:nth-of-type(2) {
  font-weight: 600;
}

.bottom-cta-details p span:last-child {
  font-weight: 600;
  color: var(--green-teal);
}

.bottom-cta-button-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.bottom-cta-detail.mobile {
  display: none;
}

.right-sidebar {
  width: 366px;
}

.sticky-container {
  box-shadow: 0px 1px 5px var(--shadow-medium);
  position: sticky;
  top: 0;
  background-color: var(--feature-yellow-bg-20);
  border-radius: 16px;
  padding: 30px 16px;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.sticky-container p {
  font-size: 15px;
  font-weight: 500;
}

.sticky-container h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--green-teal);
}

.sticky-container .cta-texts {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sticky-container .cta-texts .cta-texts-first {
  font-size: 19px;
}

.sticky-container .cta-texts .cta-texts-second {
  font-size: 44px;
}

.sticky-container .cta-texts .cta-texts-third {
  font-size: 20px;
}

.sticky-container .sticky-cta-img {
  width: 266px;
  height: auto;
}

.cta-button {
  box-shadow: 0px 4px 4px var(--shadow-cta);
  background-color: var(--green-teal);
  /* width: 100%; */
  color: var(--white);
  font-family: "Sarabun", sans-serif;
  font-size: 20px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
}

.cta-button-floating-container {
  width: 100%;
  margin-top: 14px;
}

.cta-button.cta-button-floating {
  padding: 14px 0;
  font-weight: 600;
  gap: 10px;
  align-items: flex-end;
  width: 100%;
}

.cta-middle-button {
  width: 100%;
  padding-top: 16px !important;
  padding-bottom: 16px !important;
  font-weight: 700 !important;
}

.cta-button.cta-button-bottom {
  font-weight: 600;
  padding: 16px 24px;
}

footer {
  border-top: 2px solid var(--black);
  color: var(--black);
  padding: 20px 90px;
  text-align: center;
  margin-top: auto;
}

.logo-footer {
  width: auto;
  height: 40px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}

footer .footer-texts {
  width: 100%;
  max-width: 1240px;
  border: 1px solid var(--green-teal);
  border-radius: 12px;
  padding: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.02em;
  color: var(--black) !important;
}

footer .footer-texts .disclaimer {
  font-weight: 600;
}

footer .footer-texts p.medium {
  font-weight: 500;
}

footer a {
  color: var(--gray-footer);
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
}

footer a:nth-child(2) {
  margin: 0 5px;
  padding: 0 5px;
  border-left: 1px solid var(--gray-footer);
  border-right: 1px solid var(--gray-footer);
}

footer p {
  font-weight: 400;
  font-size: 14px;
}

footer > p {
  font-family: "Poppins", sans-serif;
  color: var(--gray-footer);
}

@media screen and (max-width: 1199px) {
  br.web {
    display: none;
  }
}

@media screen and (max-width: 1220px) {
  main {
    padding: 60px 16px;
  }

  header {
    padding: 0 17px;
  }
}

/* Mobile Sticky CTA - Hidden by default on desktop */
.mobile-sticky-cta {
  display: none;
}

@media (max-width: 991px) {
  main {
    padding: 30px 16px;
  }

  .bottom-cta {
    margin-left: 16px;
    margin-right: 16px;
    width: auto;
  }

  .bottom-cta-detail.mobile {
    display: flex;
  }

  .right-sidebar {
    display: none;
  }

  .left-content {
    width: 100%;
    max-width: none;
    gap: 20px;
  }

  /* Mobile Sticky CTA */
  .mobile-sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 16px;
    background: var(--bottom-cta-bg);
    box-shadow: 0 -2px 10px var(--shadow-light);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    will-change: transform;
  }

  .mobile-sticky-cta.visible {
    transform: translateY(0);
  }
}

@media screen and (max-width: 768px) {
  * {
    font-size: 16px;
  }

  .header-container {
    padding: 12px 0;
  }

  .main-title {
    font-size: 26px;
  }

  .main-title span {
    font-size: 26px;
  }

  .headline-text {
    font-size: 16px;
  }

  .secondary-title {
    font-size: 22px;
  }

  .secondary-title.web {
    display: none;
  }

  .secondary-title.mobile {
    display: block;
  }

  .tertiary-title {
    font-size: 16px;
  }

  .reviews {
    gap: 16px;
  }

  .reviews .reviews-item img {
    height: 18px;
  }

  .bottom-cta {
    background: var(--bottom-cta-bg-mobile);
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    justify-items: center;
    padding: 24px 20px;
  }

  .bottom-cta-detail {
    flex-direction: column;
    padding: 32px 0;
  }

  .bottom-cta-detail .cta-texts {
    text-align: center;
    margin-left: 0;
  }

  .cta-button.cta-button-bottom {
    /* font-size: 16px; */
    padding: 15px 0;
    width: 100%;
  }

  .cta-button.cta-button-bottom svg {
    width: 16px;
    height: auto;
  }

  footer {
    padding: 30px 0;
  }

  footer .footer-texts {
    display: none;
  }

  footer a,
  footer p {
    font-size: 12px;
  }
}

@media screen and (max-width: 640px) {
  .feature-yellow-text br {
    display: none;
  }
}

@media screen and (max-width: 481px) {
  main {
    padding: 28px 13px;
  }

  p.p-mobile,
  p.p-mobile span {
    font-size: 18px;
  }

  .tldr-list {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .feature-yellow {
    padding: 12px;
  }

  .feature-yellow .feature-yellow-text.alt {
    font-weight: 600;
  }

  .reviews .reviews-item {
    padding: 12px;
  }

  .metric-bar.sleep {
    width: 50%;
  }

  .metric-bar {
    width: 28%;
  }

  .metric-bar.heart {
    width: 36%;
  }

  .metric-score,
  .metric-score .red,
  .metric-badge {
    font-size: 14px;
  }

  .metric-details {
    padding: 0 14px;
  }

  .metric-details li {
    font-size: 18px;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .features .feature-item.one {
    order: 1;
  }

  .features .feature-item.four {
    order: 2;
  }

  .features .feature-item.five {
    order: 3;
  }

  .features .feature-item.eight {
    order: 4;
  }

  .features .feature-item.two {
    order: 5;
  }

  .features .feature-item.three {
    order: 6;
  }

  .features .feature-item.six {
    order: 7;
  }

  .features .feature-item.seven {
    order: 8;
  }

  .features .feature-item {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--green-teal);
  }

  /* Remove border pseudo-element */
  .features .feature-item:nth-child(odd)::after {
    content: none;
  }

  .calendar-container {
    padding: 16px 8px;
  }

  .calendar-header img {
    width: 35px;
    height: auto;
  }

  .calendar-header h3 {
    font-size: 16px;
  }

  .calendar-container p {
    padding: 0 18px;
  }

  .compare-container {
    grid-template-columns: auto;
    justify-items: center;
  }

  .compare-container h3 {
    font-size: 16px;
  }

  .tldr-alt .tldr-item {
    padding: 0;
  }

  .tldr-alt .tldr-item p {
    font-size: 16px;
  }

  .teal-title {
    font-size: 16px;
  }

  .reviews .reviews-item img {
    height: 16px;
  }

  .faq-icon {
    margin-left: 6px;
  }

  .testimonial-item {
    padding: 12px 0;
    gap: 15px;
  }

  .testimonial-item .testimonial-web {
    display: none;
  }

  .testimonial-item .testimonial-mobile {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .testimonial-mobile .testimonial-mobile-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: center;
  }

  .testimonial-mobile > p {
    font-size: 14px;
  }

  .testimonial-item .testimonial-quote {
    font-size: 18px;
  }

  .testimonial-item-profile-texts p {
    font-size: 14px;
  }

  .details {
    grid-template-columns: repeat(2, auto);
    row-gap: 15px;
    justify-content: space-around;
  }

  .details p {
    font-size: 16px;
  }

  .details-item:nth-child(3) p br {
    display: block;
  }

  .cta-button svg {
    display: none;
  }

  .bottom-cta {
    padding: 24px 5px;
    margin-top: 10px;
  }

  .bottom-cta .bottom-cta-title {
    font-size: 23px;
    gap: 4px;
  }

  .bottom-cta .bottom-cta-title img {
    height: 18px;
  }

  .bottom-cta-details p {
    font-size: 14px;
  }

  .bottom-cta-details p span {
    font-size: 14px;
  }

  .cta-texts .cta-texts-first {
    font-size: 24px;
  }

  .cta-texts .cta-texts-second {
    font-size: 40px;
  }

  .cta-texts .cta-texts-third {
    font-size: 16px;
  }

  .cta-button.cta-button-bottom {
    padding: 8px 0;
  }

  br.mobile-480 {
    display: inline;
  }

  footer {
    padding: 30px 8px;
  }

  .logo-footer {
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 394px) {
  br.mobile {
    display: inline;
  }

  .headline {
    padding: 10px 0 10px 12px;
  }
}
