/* Page Hero */

.page-hero {
  background: white;
  text-align: center;
  padding: 120px 20px 70px;
}

.page-hero h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.page-hero span {
  color: var(--primary-color);
}

.page-hero p {
  font-size: 16px;
  color: #666;
  max-width: 750px;
  margin: auto;
}

/* Container */

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* Section Title */

.section-title {
  font-size: 32px;
  margin: 80px 0 40px;
  text-align: center;
  color: #222;
}

/* Story Section */

.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
}

/* Alternate Layout */

.story-section:nth-child(even) {
  direction: rtl;
}

.story-section:nth-child(even) .text {
  direction: ltr;
}

/* Text */

.text h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #222;
}

.text p {
  line-height: 1.7;
  color: #666;
  font-size: 15px;
}

/* Highlight */

.highlight {
  background: #fff4ef;
  padding: 18px;
  border-left: 4px solid var(--primary-color);
  border-radius: 6px;
  margin-top: 15px;
  font-size: 14px;
}

/* Visual */

.visual {
  background: white;
  border-radius: 12px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #555;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  padding: 20px;
}

/* Mobile */

@media (max-width: 768px) {
  .story-section {
    grid-template-columns: 1fr;
  }

  .story-section:nth-child(even) {
    direction: ltr;
  }

  .page-hero h1 {
    font-size: 30px;
  }

  .section-title {
    font-size: 26px;
  }
}
