@font-face {
  font-family: "caros-light";
  src: url(../fonts/caros/Caros-Light.otf) format("truetype");
}
@font-face {
  font-family: "caros-bold";
  src: url(../fonts/caros/Caros-Bold.otf) format("truetype");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --font-family: "caros-light";
  --heading-color: #ff4d4d;
  --heading-font: "caros-bold";
  --heading-font-weight: bolder;
  --main-heading-size: 3rem;

  --para-heading-size: 2rem;
  --font-size: 1.2rem;
  --line-height: 1;
}

body {
  font-family: var(--font-family);
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.main-section {
  width: 100%;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.mainsection-heading {
  font-size: var(--main-heading-size);
  color: var(--heading-color);
  text-align: center;
  border-bottom: 2px solid var(--heading-color);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  margin-top: 5%;
  font-family: var(--heading-font);
  font-weight: var(--heading-font-weight);
}

.block {
  margin-bottom: 2rem;
}

.list-headings {
  color: #333;
}

h2 {
  font-size: var(--para-heading-size);
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

h2 span {
  font-size: 1em;
  color: #333;
  background-color: var(--heading-color);
  border-radius: 50%;
  width: 1.5em;
  height: 1.5em;
  display: flex;
  justify-content: center;
  align-items: center;
}

p,
li {
  font-size: var(--font-size);
  line-height: var(--line-height);
}

.listitems {
  padding-left: 2rem;
}

.listitems li {
  margin-bottom: 0.5rem;
}

strong {
  font-size: 1.5rem;
  color: var(--heading-color);
}

a {
  text-decoration: underline;
  text-decoration-color: #ff4d4d;
  font-size: var(--font-size);
}

.h3-underline {
  text-decoration: underline;
  color: #333;
}

.no-underline {
  text-decoration: none;
}
