* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', 'Open Sans', sans-serif;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
  background-color: #ffffff;
}

.container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 15px;
}

.top-bar {
  background-color: #000;
  border-bottom: 1px solid #EAEAEA;
  text-align: center;
  padding: 4px 0;
}

.top-bar h4 {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #B1B1B1;
}

.header-logo-section {
  border-bottom: 1px solid #F1F1F1;
  padding: 10px 0;
  margin-bottom: 10px;
}

.logo-wrapper {
  margin-top: 13px;
}

.site-logo {
  width: 320px;
  max-width: 100%;
  height: auto;
}

.main-title {
  font-family: 'Lato', sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  color: #333;
  margin: 20px 0 10px;
}

.share-section {
  margin-bottom: 15px;
}

.share-buttons {
  display: flex;
  gap: 10px;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 0;
  color: #fff;
  text-decoration: none;
  width: 100%;
}

.share-btn.facebook {
  background-color: #3b5998;
}
.share-btn.twitter {
  background-color: #000;
}
.share-btn.pinterest {
  background-color: #bd081c;
}

.share-btn svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.featured-image {
  width: 100%;
  height: auto;
  margin: 15px 0;
}

.section-heading {
  font-family: 'Lato', sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
  color: #333;
  margin: 30px 0 15px;
}

.body-text {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
  margin-bottom: 20px;
}

.body-text p {
  margin-bottom: 1.2em;
}

.body-text a {
  color: #0000ff;
  text-decoration: none;
  font-weight: 600;
}

.body-text a:hover {
  text-decoration: underline;
}

.testimonial-card {
  background-color: #EDF9FF;
  border-right: 5px solid #337AB7;
  border-radius: 5px;
  padding: 15px 20px;
  margin: 20px 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 20px;
  line-height: 1.5;
  color: #333;
  font-style: italic;
}

.testimonial-author {
  margin-top: 10px;
  color: #555;
  font-weight: 600;
}

.stars {
  display: inline-block;
  margin-left: 5px;
}

.stars svg {
  width: 20px;
  height: 20px;
  fill: #FFB900;
  vertical-align: middle;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  margin: 20px 0;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
}

.cta-button {
  display: block;
  background-color: #1FBA34;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  padding: 18px 20px;
  border-radius: 7px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.35);
  margin: 30px 0 40px;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #07893A;
  color: #fff;
}

.full-width-image {
  width: 100%;
  height: auto;
  margin: 20px 0;
}

.update-box {
  background-color: #FEF5C4;
  border: 3px dashed #FE7D7F;
  box-shadow: 0 0 10px #FADF98;
  padding: 20px 25px;
  margin: 30px 0;
}

.update-box p {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 20px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 10px;
}

.update-box strong {
  font-weight: 700;
}

.footer {
  background-color: #000;
  color: #7B7B7B;
  padding: 30px 0 20px;
  margin-top: 40px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 30px;
  margin-bottom: 30px;
}

.footer-links a {
  color: #7B7B7B;
  text-decoration: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #54595F;
}

.footer-disclaimers {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  color: #7B7B7B;
  margin-bottom: 30px;
}

.footer-disclaimers p {
  margin-bottom: 15px;
}

.footer-disclaimers a {
  color: #7B7B7B;
}

.footer-disclaimers small {
  font-size: 12px;
}

.copyright {
  text-align: center;
  margin-top: 30px;
}

.inline-list {
  padding-left: 20px;
  margin-bottom: 26px;
}

.inline-list li {
  margin: 13px 0;
}

.spacer-20 {
  margin-top: 20px;
}

.spacer-40 {
  margin-top: 40px;
}

@media (max-width: 767px) {
  .main-title {
    font-size: 32px;
    line-height: 1.15;
  }

  .section-heading {
    font-size: 24px;
  }

  .body-text {
    font-size: 18px;
  }

  .testimonial-text {
    font-size: 20px;
  }

  .cta-button {
    font-size: 23px;
    padding: 15px;
  }

  .site-logo {
    width: 76%;
  }

  .update-box p {
    font-size: 18px;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-links a {
    font-size: 16px;
  }

  .footer-disclaimers {
    font-size: 16px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }
}