/* 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-10 {
  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(--primary-color);
  font-style: italic;
}

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

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

.vision-text p {
  font-size: 24px;
  line-height: 1.5;
  color: var(--tertiary-color);
  margin-bottom: 25px;
}

.vision-text .highlight {
  background: var(--primary-color);
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: bold;
}

.vision-image {
  margin: 0 0 40px 0;
  text-align: center;
}

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

.vision-image figcaption {
  margin-top: 15px;
  font-style: italic;
  color: var(--tertiary-color);
  font-size: 18px;
}

.vision-conclusion {
  background: rgba(78, 187, 247, 0.1);
  padding: 30px;
  border-radius: 8px;
}

.vision-conclusion p {
  font-size: 22px;
  line-height: 1.5;
  color: var(--tertiary-color);
  margin: 0;
}

@media (max-width: 768px) {
  .vision-header h2 {
    font-size: 32px;
  }

  .vision-text p {
    font-size: 20px;
  }

  .vision-conclusion p {
    font-size: 18px;
  }

  .vision-content {
    padding: 25px;
  }
}
