/* Root Variables */
:root {
  --primary-color: #81b71a;
  --secondary-color: #4ebbf7;
  --tertiary-color: #6d6d6d;
  --body-font: Arial, sans-serif;
  --title-font: Helvetica, Arial, sans-serif;
}

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

/* Base Styles */
body {
  font-family: var(--body-font);
  line-height: 1.6;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  font-size: 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font);
}

p,
span,
a,
li,
button {
  font-family: var(--body-font);
}

.container-2 {
  margin: 60px 0;
  width: 100%;
  position: relative;
}

.container-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: #f8f8f8;
  z-index: -1;
}

.container-2 > * {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 25px;
}

.container-2-section-title {
  text-align: center;
  font-size: 42px;
  color: #333;
  margin-bottom: 40px;
  line-height: 1.3;
  padding-top: 40px;
}

.container-2-section-title em {
  font-style: italic;
  text-decoration: underline;
}

.description-section-2 {
  background: transparent;
  padding: 0 40px 40px 40px;
}

.ds2-content {
  font-size: 24px;
  line-height: 1.5;
  color: var(--tertiary-color);
}

.ds2-image {
  float: right;
  width: 350px;
  margin: 0 0 40px 50px;
}

.ds2-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  border: 10px solid white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ds2-content p {
  margin-bottom: 25px;
}

.ds2-content .highlight-text {
  font-size: 32px;
  color: var(--primary-color);
  font-weight: bold;
}

.ds2-content em {
  font-style: italic;
  color: var(--primary-color);
}

.questions {
  clear: both;
  margin-top: 40px;
  border-top: 2px solid #eee;
  padding-top: 30px;
}

.question {
  font-family: "Comic Sans MS", cursive, var(--body-font);
  font-size: 26px;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.4;
}

.question u {
  text-decoration: none;
  border-bottom: 2px solid #333;
}
