:root {
  --title-color: #53bbef;
  --section-color : #08374d;
  --subsection-color: #08628b;
  --bold-color : #000;
  --link-color : #0e87be;
  --link-color-hover : #53bbef;
  
  --form-container-color : #08628b;
  
  --title-font-size: 22px;
  --section-font-size: 20px;
  --subsection-font-size: 18px;
  --content-font-size: 16px;
  --form-font-size-title : 24px;
  --form-font-size-content : 18px;
}
.single article {
  width: 100% !important;
}
.article-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  padding: 0px;
  margin: 0px;
  margin-top: 1em;

}

.article-header {

  border-radius: 2em;
  width: 80%;
}

.article-background {
  display: flex;
  flex-direction: column;
  justify-content: end;
  height: calc(20vw + 50px);
  margin: 0px auto;
  border-radius: 2em;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.article-title {
  display: inline-flex;
  max-width: 80%;
  width: fit-content;
  background-color: #fff;
  font-size: var(--title-font-size);
  font-weight: bolder;
  color: var(--title-color);
  padding: 42px 50px 21px 16px;
  border-radius: 0 2em 0 0;
}

.article-content {
  width: 80%;
  padding-left: 2em;
  margin: 2em auto;
}

.article-content strong {
 color: var(--bold-color);
}

.article-content a {
  font-weight: bolder;
  color:var(--link-color);
}

.article-content a:hover {
  color:var(--link-color-hover);
}

.section {
  font-size: var(--section-font-size);
  color: var(--section-color);
}

.subsection {
  font-size: var(--subsection-font-size);
  color: var(--subsection-color);
}

.article-content p, .article-content ul {
  font-size: var(--content-font-size);
}

.article-form-container {
  color: #fff;
  background-color: var(--form-container-color);
  border-radius: 2em;
  padding: 2em;
  padding-bottom: 10em;
  margin-top: 2em;
}

.article-form-container h2 {
  font-size: var(--form-font-size-title);
  border-radius: 1em;
}

.article-form-container p {
  font-size: var(--form-font-size-content);
}

.section {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}
.section + p {
  padding-left: 5px; /* Adjust the value as needed for the desired indent */
}

.subsection {
  margin-top: 1em;
  margin-bottom: 0.5em;
  padding-left: 20px;
}
.subsection + p {
  padding-left: 40px; /* Adjust the value as needed for the desired indent */
}

.section + p {
  text-indent: 20px; /* Adjust the value as needed for the desired indent */
}

.checkmarks {
  list-style-type: none !important;
  padding-left: 20px;
}

.checkmarks li {
  position: relative;
  padding-left: 20px;
}

.checkmarks li:before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #000;
}

@media (max-width: 768px) {
  :root {
    --title-font-size: 18px;
    --section-font-size: 18px;
    --subsection-font-size: 16px;
    --content-font-size: 14px;
    --form-font-size-title : 20px;
    --form-font-size-content : 16px;
  }
}

@media (max-width: 480px) {
  :root {
    --title-font-size: 14px;
  }
}