.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 h2 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 22px;
}

.intro-box p {
  color: var(--text-color);
  opacity: 0.9;
}

.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;
  text-align: justify;
}

.section ul {
  margin-left: 25px;
  margin-bottom: 20px;
}

.section li {
  margin-bottom: 10px;
  padding-left: 5px;
}

.highlight-box {
  background: #f8f9fa;
  border-left: 3px solid var(--primary-color);
  padding: 20px;
  margin: 25px 0;
  border-radius: 5px;
}

.warning-box {
  background: #fff3cd;
  border-left: 3px solid #ffc107;
  padding: 20px;
  margin: 25px 0;
  border-radius: 5px;
}

.contact-box {
  background: var(--primary-color-gradient);
  color: var(--text-color-alt);
  padding: 30px;
  border-radius: 10px;
  margin-top: 50px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(209, 29, 35, 0.3);
}

.contact-box h2 {
  color: var(--text-color-alt);
  margin-bottom: 15px;
  border: none;
}

.contact-box p {
  margin-bottom: 10px;
}

.contact-box a {
  color: var(--text-color-alt);
  text-decoration: underline;
  font-weight: 600;
}

.effective-date {
  text-align: center;
  color: #666;
  font-style: italic;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}

.table-responsive {
  overflow-x: auto;
  margin: 20px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

table th {
  background: var(--primary-color);
  color: var(--text-color-alt);
  padding: 12px;
  text-align: left;
  font-weight: 600;
}

table td {
  padding: 12px;
  border-bottom: 1px solid #ddd;
}

table tr:hover {
  background: #f8f9fa;
}

.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: 30px 15px;
  }

  .section h2 {
    font-size: 20px;
  }

  .section h3 {
    font-size: 16px;
  }

  table {
    font-size: 14px;
  }

  table th,
  table td {
    padding: 8px;
  }
}
