* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.5;
  color: #222;
  background-color: #fff;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.main-layout {
  max-width: 700px;
  width: 91.666667%;
  margin: 0 auto;
}
@media (min-width: 1280px) {
  .main-layout {
    width: 83.333333%;
  }
}
@media (min-width: 1536px) {
  .main-layout {
    width: 75%;
  }
}

/* header */
.main-header {
  background-color: #efefef;
}
.advertorial {
  background: #b5b5b5;
  color: #fff;
  text-align: center;
  font-size: 0.75rem;
  padding: 0.25rem 0;
  margin-bottom: 0.125rem;
  z-index: 20;
}
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0 0.5rem;
}
.logo img {
  width: 180px;
}

/* typography base */
h1,
h2,
h3,
h4 {
  font-weight: 500;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #333;
}
h1 {
  font-size: 30px;
  line-height: 44px;
  margin: 5px 0 30px;
  color: #222;
  font-weight: 500;
}
h1 em {
  font-weight: 700;
}
h2 {
  font-size: 30px;
  line-height: 1.1;
  margin: 20px 0 10px;
  color: #333;
}
h2 strong {
  font-weight: 500;
}
p {
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 17px;
  line-height: 26px;
  margin: 25px 0 20px;
  color: #222;
}
.profile p {
  font-weight: 400;
  margin: 0;
  color: #222;
}
.wp-block-image.size-full {
  margin: 20px 0;
}
.p-bordered {
  background: #effff7;
  border: 1px dotted #000;
  padding: 4px 9px;
  margin: 25px 0 20px;
}
.p-big-capital span:first-child {
  color: #000;
  float: left;
  font-family: Times, serif, Georgia;
  font-size: 68px;
  font-weight: 500;
  line-height: 35px;
  padding-right: 2px;
  padding-top: 6px;
}
.framed-gallery {
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
  max-width: 100%;
  overflow: hidden;
  margin: 20px 0;
}
.framed-gallery .wp-block-column {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
}
.framed-gallery figure {
  margin: 0;
}
.framed-gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.main-layout img {
  border-radius: 10px;
}

/* buttons */
.wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.wp-block-button.cta {
  text-align: center;
  margin: 10px 0;
}
.wp-block-button__link {
  background-color: green;
  border: 2px solid #4caf50;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  padding: 16px 32px;
  text-decoration: none;
  transition: background-color 0.4s;
  text-align: center;
  border-radius: 0;
}
.wp-block-button__link:hover {
  background-color: #4caf50;
  color: #fff;
}
@media (max-width: 768px) {
  .wp-block-button__link {
    display: block;
    width: 100%;
    padding: 16px 0;
    margin: 10px 0;
  }
}
.wp-block-button__link strong {
  font-weight: 700;
}

/* video */
.video-banner {
  margin: 25px 0 20px;
}
.video-banner video {
  width: 100%;
  border-radius: 1rem;
  display: block;
  object-fit: cover;
  height: auto;
}

/* features section */
.features {
  padding-bottom: 20px;
}
.features h2 {
  font-size: 30px;
  line-height: 1.1;
  margin: 20px 0 10px;
}

/* footer */
footer {
  background-color: #efefef;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 10px;
  font-weight: 400;
  text-align: center;
  padding: 1rem 0;
  margin-top: 20px;
}
footer .logo {
  margin-bottom: 0.5rem;
}
footer .menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 0.75rem 0;
  padding: 0;
}
footer .menu a {
  text-decoration: underline;
  color: #000;
}
footer p {
  font-size: 10px;
  margin: 0.5rem 0;
  color: #000;
  font-family: inherit;
}

/* responsive adjustments */
@media (max-width: 767px) {
  h1 {
    font-size: 30px;
    line-height: 36px;
  }
  h2 {
    font-size: 26px;
  }
}
.docs {
  padding: 30px 0;
}
.docs ul {
  padding-left: 20px;
}