:root {
  --primary-color: #446084;
  --secondary-color: #008000;
  --success-color: #008000;
  --alert-color: #b20000;
  --text-dark: #333333;
  --text-muted: #7B7B7B;
  --link-color: #167ac6;
  --link-hover-color: #0b4593;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  background-color: #FFFFFF;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--link-color);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--link-hover-color);
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #17191c;
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 0.5em;
}

p {
  margin-top: 0;
  margin-bottom: 1.3em;
}

ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 26px;
}

ul li {
  margin: 13px;
}

.container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 15px;
}

/* === TOP BAR === */
.top-bar {
  background-color: #000000;
  border-bottom: 1px solid #EAEAEA;
  text-align: center;
  padding: 0;
}

.top-bar .advertorial-text {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #B1B1B1;
  margin: 0;
  padding: 5px 0;
}

/* === HEADER / LOGO SECTION === */
.logo-section {
  border-bottom: 1px solid #F1F1F1;
  padding: 8px 0 5px 0;
  margin-top: -10px;
}

.logo-section .logo-img {
  width: 35%;
  max-width: 350px;
}

/* === MAIN CONTENT === */
.main-content {
  padding: 0 0 50px 0;
}

.main-title {
  font-family: 'Lato', sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 50px;
  color: #333333;
  text-align: left;
  margin-bottom: 15px;
}

/* === SHARE BUTTONS === */
.share-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 4.4em;
  color: #fff;
  font-size: 10px;
  text-decoration: none;
  transition: filter 0.2s;
}

.share-btn:hover {
  filter: saturate(1.5) brightness(1.2);
  color: #fff;
}

.share-btn i {
  font-size: 28px;
  color: white;
}

.share-btn.facebook {
  background-color: #3b5998;
}

.share-btn.twitter {
  background-color: #000000;
}

.share-btn.pinterest {
  background-color: #bd081c;
}

/* === TEXT CONTENT === */
.content-text {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: #333333;
  text-align: left;
}

.content-text a:hover {
  text-decoration: underline;
}

.video-wrapper {
  aspect-ratio: 16/9;
  overflow: hidden;
  transform: translateZ(0);
  margin: 20px 0;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #000;
  border: none;
}

/* === HIGHLIGHT BOX GREEN === */
.highlight-box-green {
  background-color: #D0FCD0;
  border-radius: 200px;
  padding: 8px 8px;
  margin-bottom: 20px;
  text-align: left;
}

.highlight-box-green .inner-text {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  color: #333333;
  margin: 0;
  padding: 0 15px;
}

/* === SECTION HEADING === */
.section-heading {
  font-family: 'Lato', sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 37px;
  color: #333333;
  text-align: left;
  margin: 20px 0 15px 0;
}

/* === IMAGE FULL WIDTH === */
.img-full {
  width: 100%;
  display: block;
  margin: 15px 0;
}

/* === QUOTE BOX BLUE === */
.quote-box-blue {
  background-color: #EDF9FF;
  border: none;
  border-radius: 5px;
  padding: 14px;
  margin-bottom: 20px;
  transition: box-shadow 0.3s;
}

.quote-box-blue:hover {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

.quote-box-blue.border-right {
  border-right: 5px solid #337AB7;
}

.quote-text {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  color: #333333;
  margin: 0;
}

/* === IMAGE BOX (CHEF) === */
.image-box-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.image-box-img {
  width: 30%;
  flex-shrink: 0;
}

.image-box-img img {
  width: 100%;
  border-radius: 5px;
}

.image-box-content {
  flex: 1;
}

.image-box-description {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  line-height: 1.5;
  margin: 0;
}

/* === NUMBERS BOX === */
.numbers-box {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: #333333;
  text-align: left;
}

/* === CTA BUTTON === */
.btn-cta {
  display: block;
  width: 100%;
  background-color: #1FBA34;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 38px;
  text-align: center;
  padding: 15px;
  border-radius: 7px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.35);
  text-decoration: none;
  transition: background-color 0.3s;
  margin: 0 0 40px 0;
  border: none;
  cursor: pointer;
}

.btn-cta:hover {
  background-color: #07893A;
  color: #fff;
}

/* === TESTIMONIAL BOX BLUE WITH BORDER === */
.testimonial-box {
  background-color: #EDF9FF;
  border-right: 5px solid #337AB7;
  border-radius: 5px;
  padding: 14px;
  margin-bottom: 20px;
  transition: box-shadow 0.3s;
}

.testimonial-box:hover {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

/* === STARS === */
.stars-img {
  height: 20px;
  width: auto;
  vertical-align: middle;
  margin-left: 5px;
}

/* === URGENT BOX === */
.urgent-box {
  background-color: #FEF5C4;
  border: 3px dashed #FE7D7F;
  box-shadow: 0px 0px 10px 0px #FADF98;
  padding: 14px;
  margin-bottom: 20px;
  transition: box-shadow 0.3s;
}

.urgent-box:hover {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

/* === FOOTER === */
.footer {
  background-color: #000000;
  padding: 20px 0 0 0;
  margin-top: 30px;
}

.footer .container {
  max-width: 880px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  list-style: none;
  padding: 5px;
  margin: 0 0 30px 0;
}

.footer-links li {
  margin: 0;
}

.footer-links li a {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 15px;
  color: #7B7B7B;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links li a:hover {
  color: #54595F;
}

.footer-links li:not(:last-child)::after {
  content: "|";
  color: #7B7B7B;
  margin-left: 8px;
  margin-right: 8px;
}

.footer-disclaimers {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #7B7B7B;
  text-align: center;
  padding: 5px;
}

.footer-disclaimers strong {
  font-weight: 700;
}

.footer-disclaimers p {
  margin-bottom: 10px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }

  .main-content {
    padding: 20px 0;
  }

  .logo-section .logo-img {
    width: 45%;
  }
}

@media (max-width: 767px) {
  .main-title {
    font-size: 32px;
    line-height: 36px;
  }

  .logo-section .logo-img {
    width: 86%;
  }

  .btn-cta {
    font-size: 23px;
    line-height: 26px;
  }

  .section-heading {
    font-size: 24px;
    line-height: 30px;
  }

  .content-text {
    font-size: 18px;
    line-height: 26px;
  }

  .quote-text {
    font-size: 20px;
    line-height: 26px;
  }

  .image-box-wrapper {
    flex-direction: column;
  }

  .image-box-img {
    width: 61%;
    margin: 0 auto 15px auto;
  }

  .highlight-box-green {
    border-radius: 20px;
  }

  .share-btn {
    height: 3.5em;
  }

  .share-btn i {
    font-size: 22px;
  }

  .footer-links li a {
    font-size: 16px;
    line-height: 26px;
  }

  .footer-disclaimers {
    font-size: 16px;
    line-height: 26px;
  }
}

@media (max-width: 480px) {
  .highlight-box-green {
    border-radius: 15px;
    padding: 5px;
  }

  .highlight-box-green .inner-text {
    font-size: 16px;
    line-height: 24px;
  }
}
.docs {
  padding: 50px 0;
}