.container {
  max-width: 900px;
  margin: 100px auto;
  padding: 20px 20px;
}

.intro-box {
  background: linear-gradient(
    135deg,
    rgba(226, 39, 45, 0.05),
    rgba(209, 29, 35, 0.05)
  );
  border-left: 4px solid var(--primary-color);
  padding: 25px;
  margin-bottom: 40px;
  border-radius: 8px;
}

.intro-box h1,
.intro-box h2 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 22px;
}

.intro-box p {
  color: var(--text-color);
  opacity: 0.9;
}

.intro-box a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: bold;
  display: inline-block;
  transition: color 0.3s ease, transform 0.3s ease;
}

.intro-box i {
  font-size: 1rem;
  text-align: center;
  font-weight: bold;
}

.intro-box a:hover {
  color: var(--primary-color);
  transform: translateX(0.5rem);
}

.section {
  margin-bottom: 40px;
}

.section h2 {
  color: var(--primary-color);
  font-size: 24px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
}

.section h3 {
  color: var(--text-color);
  font-size: 18px;
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: 600;
}

.section p {
  margin-bottom: 15px;
}

.section ul {
  margin-left: 25px;
  margin-bottom: 20px;
}

.section li {
  margin-bottom: 10px;
  padding-left: 5px;
}

.warning-box {
  background: #fff3cd;
  border-left: 3px solid #ffc107;
  padding: 20px;
  margin: 25px 0;
  border-radius: 5px;
}

.effective-date {
  text-align: center;
  color: #666;
  font-style: italic;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .section h2 {
    font-size: 20px;
  }

  .section h3 {
    font-size: 16px;
  }
}
