/* ====================================
   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 9: Program Comparison - New Modern Design */
.article-9 {
  width: 100%;
  background: white;
  padding: 120px 0;
}

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

.article-9 .intro-banner {
  text-align: center;
  margin-bottom: 80px;
}

.article-9 .reason-tag {
  background: var(--primary-color);
  color: white;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 20px;
  display: inline-block;
  margin-bottom: 30px;
}

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

.article-9 .comparison-wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.article-9 .comparison-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.article-9 .comparison-text h3 {
  font-size: 36px;
  color: var(--tertiary-color);
  margin-bottom: 20px;
}

.article-9 .comparison-text p {
  font-size: 24px;
  line-height: 1.6;
  color: var(--tertiary-color);
}

.article-9 .programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.article-9 .program-card {
  background: #f8f8f8;
  border-radius: 20px;
  overflow: hidden;
}

.article-9 .card-header {
  padding: 30px;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.article-9 .card-header h4 {
  font-size: 28px;
  color: var(--tertiary-color);
  margin-bottom: 15px;
}

.article-9 .program-tag {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: bold;
}

.article-9 .basic .program-tag {
  background: var(--tertiary-color);
  color: white;
}

.article-9 .comprehensive .program-tag {
  background: var(--primary-color);
  color: white;
}

.article-9 .program-content {
  padding: 30px;
}

.article-9 .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.article-9 .feature-list li {
  font-size: 18px;
  color: var(--tertiary-color);
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

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

.article-9 .program-note {
  background: white;
  padding: 20px;
  border-radius: 15px;
}

.article-9 .program-note.success {
  background: var(--primary-color);
  color: white;
}

.article-9 .research-evidence {
  background: #f8f8f8;
  padding: 60px;
  border-radius: 20px;
  margin-top: 60px;
}

.article-9 .evidence-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.article-9 .evidence-content h3 {
  font-size: 36px;
  color: var(--tertiary-color);
  margin-bottom: 20px;
}

.article-9 .evidence-content p {
  font-size: 20px;
  line-height: 1.6;
  color: var(--tertiary-color);
  margin-bottom: 40px;
}

.article-9 .evidence-image {
  margin: 0;
}

.article-9 .evidence-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  margin-bottom: 15px;
}

.article-9 .evidence-image figcaption {
  font-size: 16px;
  color: var(--tertiary-color);
  font-style: italic;
}

.article-9 .conclusion-section {
  background: var(--primary-color);
  padding: 60px;
  border-radius: 20px;
  color: white;
  margin-top: 60px;
}

.article-9 .conclusion-content {
  text-align: center;
}

.article-9 .conclusion-content h3 {
  font-size: 36px;
  margin-bottom: 20px;
}

.article-9 .conclusion-content p {
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.article-9 .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

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

.article-9 .stat-number {
  font-size: 48px;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

.article-9 .stat-item p {
  font-size: 18px;
  margin: 0;
}

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

  .article-9 .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .article-9 h2 {
    font-size: 36px;
  }

  .article-9 .comparison-text h3,
  .article-9 .evidence-content h3,
  .article-9 .conclusion-content h3 {
    font-size: 28px;
  }

  .article-9 .stats-grid {
    grid-template-columns: 1fr;
  }

  .article-9 .research-evidence,
  .article-9 .conclusion-section {
    padding: 30px;
  }
}

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

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

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