* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Coustard", serif;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 85%;
}

.hero {
  background-image: url("/images/hero.png");
  background-size: cover;
  background-position: center;
  height: 700px;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.hero::after,
.privacy-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 35%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(19, 17, 17, 0.9) 70%,
    #020202 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-inner h1 {
  font-family: "Markazi Text", serif;
  font-size: 100px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin: 0;
  text-shadow: 1px 2px 2px rgb(211 19 19);
  padding-top: 100px;
  width: 50%;
  margin: 0 auto;
  transition: all 0.3s ease-in-out;
  line-height: 0.9;
}

.body-section em {
  padding-right: 5px;
}

.body-section h2 em {
  font-size: 31px !important;
}
.hero-inner h1 span,
.mobile-hero-inner h1 span {
  color: rgb(211 19 19);
}

.mobile-hero {
  background-color: #000;
  padding: 30px 0;
}

.mobile-hero-inner h1 {
  font-family: "Markazi Text", serif;
  font-size: 50px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  text-shadow: 1px 2px 2px rgb(211 19 19);
  transition: all 0.3s ease-in-out;
  padding: 0 30px;
  line-height: 0.9;
}

h2.headline {
  font-family: "Markazi Text", serif;
  font-size: 70px !important;
  color: white;
  font-weight: 900;
  text-shadow: 1px 2px 2px rgb(211 19 19);
  text-align: center;
  position: relative;
  z-index: 10;
}

.image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
}

.image-container img {
  width: 100%;
  height: auto;
  max-width: 600px;
  border: 3px solid rgb(211 19 19);
}

.header-section,
.privacy-hero,
.tear-section {
  background-image: url("/images/body_bkg.png");
  background-size: cover;
  background-position: center;
  padding: 70px 0px;
  position: relative;
  background-color: black;
}

.header-section::before,
.tear-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 25%;
  background: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

.header-section::after,
.tear-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #020202 100%);
  pointer-events: none;
  z-index: 1;
}

.body-section,
.privacy-content {
  background-color: #020202;
  padding: 100px 0;
}

.body-section p,
.body-section ul,
.body-section li,
.body-section span,
.body-section em,
.body-section strong {
  font-family: "Coustard", serif;
  font-size: 24px;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.body-section ul {
  padding-left: 40px;
}

.privacy-hero h1 {
  font-family: "Markazi Text", serif;
  font-size: 100px;
  font-weight: 900;
  text-shadow: 1px 2px 2px rgb(211 19 19);
  text-align: center;
  color: white;
}
.privacy-content p,
.privacy-content ol,
.privacy-content ul {
  font-family: "Coustard", serif;
  font-size: 18px;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.privacy-content ol,
.privacy-content ul {
  margin-left: 30px;
}

.privacy-content h2 {
  font-family: "Coustard", serif;
  font-size: 24px;
  color: #fff;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.privacy-content a {
  color: rgb(211 19 19);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.privacy-content a:hover {
  text-decoration: underline;
}

footer {
  background-color: #151b29;
  color: #fff;

  text-align: center;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 0;
}

.footer-links a {
  font-family: "Coustard", serif;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.footer-links a:hover {
  color: rgb(211 19 19);
}

.disclaimer {
  border: 1px solid white;
  font-family: "Coustard", serif;
  padding: 10px 20px;
  margin-bottom: 15px;
  font-size: 16px;
  color: #fff;
  text-align: center;
}

.mobile-hero {
  display: none;
}
