/* 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);
}

.article-8 {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 25px;
}

.vision-header {
  text-align: center;
  margin-bottom: 40px;
}

.vision-header h2 {
  font-size: 42px;
  color: var(--tertiary-color);
}

.vision-header em {
  color: var(--secondary-color);
  font-style: italic;
}

.vision-content {
  background: #f8f8f8;
  padding: 40px;
  border-radius: 8px;
}

.vision-image {
  margin: 0 0 30px 0;
}

.vision-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.future-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.future-benefits li {
  font-size: 20px;
  color: var(--tertiary-color);
  margin-bottom: 15px;
  line-height: 1.5;
}

.future-benefits .emphasis {
  font-weight: bold;
  border-bottom: 2px solid var(--primary-color);
}

.possibility-note {
  margin: 30px 0;
  text-align: center;
}

.possibility-note p {
  font-size: 24px;
  color: var(--tertiary-color);
  margin-bottom: 10px;
}

.highlight {
  background: #ffeb3b;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: bold;
}

.program-details {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 8px;
  margin-top: 40px;
}

.detail-text {
  font-size: 20px;
  color: var(--tertiary-color);
  font-style: italic;
  margin-bottom: 20px;
}

.requirements {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.requirements li {
  font-size: 20px;
  color: var(--tertiary-color);
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.requirements li::before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

.accessibility-points {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
}

.accessibility-points li {
  font-size: 18px;
  color: var(--tertiary-color);
  margin-bottom: 8px;
  font-style: italic;
}
