/* ====================================
   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 6: Solution Introduction - New Design */
.article-6 {
  width: 100%;
  background: white;
  padding: 100px 0;
}

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

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

.article-6 h2 {
  font-size: 56px;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.article-6 .lead-text {
  font-size: 32px;
  color: var(--tertiary-color);
  max-width: 800px;
  margin: 0 auto;
}

.article-6 .solution-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
}

.article-6 .main-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.article-6 .key-message {
  background: #f8f8f8;
  padding: 40px;
  border-radius: 15px;
}

.article-6 .key-message p {
  font-size: 24px;
  line-height: 1.6;
  color: var(--tertiary-color);
  margin-bottom: 20px;
}

.article-6 .benefits-section {
  margin: 40px 0;
}

.article-6 .benefits-section h3 {
  font-size: 36px;
  color: var(--tertiary-color);
  margin-bottom: 40px;
}

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

.article-6 .benefit-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.article-6 .benefit-item:hover {
  transform: translateY(-5px);
}

.article-6 .benefit-icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
}

.article-6 .benefit-item h4 {
  font-size: 24px;
  color: var(--tertiary-color);
  margin-bottom: 15px;
}

.article-6 .benefit-item p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--tertiary-color);
}

.article-6 .proof-section {
  background: var(--primary-color);
  padding: 40px;
  border-radius: 15px;
  color: white;
}

.article-6 .proof-content h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

.article-6 .proof-content p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.article-6 .proof-list {
  list-style: none;
  padding: 0;
}

.article-6 .proof-list li {
  font-size: 18px;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.article-6 .proof-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
}

.article-6 .visual-content {
  position: sticky;
  top: 40px;
  align-self: start;
}

.article-6 figure {
  margin: 0 0 30px 0;
}

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

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

.article-6 .testimonial-box {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 15px;
  margin: 40px 0;
}

.article-6 .testimonial-box blockquote {
  font-size: 20px;
  line-height: 1.6;
  color: var(--tertiary-color);
  font-style: italic;
  margin: 0 0 20px 0;
}

.article-6 .testimonial-box cite {
  color: var(--primary-color);
  font-style: normal;
  font-weight: bold;
}

.article-6 .highlight-primary {
  color: var(--primary-color);
  font-weight: bold;
}

.article-6 .highlight-secondary {
  color: var(--secondary-color);
  font-weight: bold;
}

.article-6 .emphasis {
  font-style: italic;
  font-weight: 500;
}

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

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

  .article-6 .visual-content {
    position: static;
  }
}

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

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

  .article-6 .lead-text {
    font-size: 24px;
  }

  .article-6 .benefits-grid {
    grid-template-columns: 1fr;
  }

  .article-6 .key-message p {
    font-size: 20px;
  }
}

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

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

  .article-6 p {
    font-size: 20px;
  }

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