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

/* Base Typography */
body {
  font-family: var(--body-font);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

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

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

/* ====================================
     Common Components
     ==================================== */
.highlight {
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  opacity: 0.3;
}

.feature-item {
  transition: transform 0.2s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
}

.tag {
  transition: background-color 0.2s ease;
}

.tag:hover {
  background-color: var(--secondary-color);
}

.cta-button {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Article Template 10: Success Vision - New Modern Design */
.article-10 {
  width: 100%;
  background: white;
  padding: 120px 0;
}

.article-10 .article-content {
  max-width: 1100px;
  margin: 0 auto;
}

.article-10 .intro-section {
  text-align: center;
  margin-bottom: 80px;
}

.article-10 h2 {
  font-size: 64px;
  color: var(--tertiary-color);
  margin-bottom: 30px;
  line-height: 1.2;
}

.article-10 .vision-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
}

.article-10 .text-column {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.article-10 .vision-block {
  background: #f8f8f8;
  padding: 40px;
  border-radius: 20px;
}

.article-10 h3 {
  font-size: 36px;
  color: var(--tertiary-color);
  margin-bottom: 30px;
}

.article-10 p {
  font-size: 20px;
  line-height: 1.6;
  color: var(--tertiary-color);
  margin-bottom: 30px;
}

.article-10 .benefits-list {
  list-style: none;
  padding: 0;
}

.article-10 .benefits-list li {
  font-size: 20px;
  margin-bottom: 25px;
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
  color: var(--tertiary-color);
}

.article-10 .benefits-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.article-10 .lifestyle-block {
  background: var(--primary-color);
  padding: 40px;
  border-radius: 20px;
  color: white;
}

.article-10 .lifestyle-block h3,
.article-10 .lifestyle-block p {
  color: white;
}

.article-10 .activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.article-10 .activity-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
}

.article-10 .activity-icon {
  font-size: 36px;
  margin-bottom: 15px;
  display: block;
}

.article-10 .image-column {
  position: sticky;
  top: 40px;
  align-self: start;
}

.article-10 figure {
  margin: 0 0 40px 0;
}

.article-10 figure img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  margin-bottom: 15px;
}

.article-10 figcaption {
  font-size: 16px;
  color: var(--tertiary-color);
  text-align: center;
  font-style: italic;
}

.article-10 .success-box {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 40px;
}

.article-10 .success-box h4 {
  font-size: 24px;
  color: var(--tertiary-color);
  margin-bottom: 20px;
}

.article-10 .feature-list {
  list-style: none;
  padding: 0;
}

.article-10 .feature-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  color: var(--tertiary-color);
  margin-bottom: 15px;
}

.article-10 .feature-icon {
  font-size: 24px;
}

.article-10 .testimonial {
  background: var(--primary-color);
  padding: 30px;
  border-radius: 15px;
  color: white;
}

.article-10 .testimonial p {
  font-size: 20px;
  font-style: italic;
  margin-bottom: 15px;
  color: white;
}

.article-10 .testimonial cite {
  font-style: normal;
  font-weight: bold;
}

.article-10 .conclusion-section {
  text-align: center;
  max-width: 800px;
  margin: 80px auto 0;
  padding: 60px;
  background: #f8f8f8;
  border-radius: 20px;
}

.article-10 .emphasis {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Media Queries for Article 10 */
@media (max-width: 968px) {
  .article-10 .vision-content {
    grid-template-columns: 1fr;
  }

  .article-10 .image-column {
    position: static;
    order: -1;
  }
}

@media (max-width: 768px) {
  .article-10 {
    padding: 60px 20px;
  }

  .article-10 h2 {
    font-size: 42px;
  }

  .article-10 h3 {
    font-size: 28px;
  }

  .article-10 .activity-grid {
    grid-template-columns: 1fr;
  }

  .article-10 p,
  .article-10 .benefits-list li {
    font-size: 18px;
  }
}

/* Media Queries for Articles */
@media (max-width: 968px) {
  .article-10 .content-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .article-10 h2 {
    font-size: 36px;
  }

  .article-10 .benefits-list li {
    font-size: 20px;
  }

  .article-10 {
    padding: 60px 20px;
  }
}
