.terms-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

.terms-summary {
  background: linear-gradient(135deg, #004f4d, #188f8b);
  color: white;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.terms-section {
  background: white;
  margin-bottom: 1.5rem;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 79, 77, 0.1);
}

.terms-section h2 {
  color: #004f4d;
  border-bottom: 2px solid #90be6d;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.terms-section h3 {
  color: #188f8b;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.terms-section ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.terms-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.contact-item h4 {
  color: #004f4d;
  margin-bottom: 0.5rem;
}

.contact-item a {
  color: #188f8b;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .terms-content {
    padding: 1rem;
  }

  .terms-section {
    padding: 1.5rem;
  }
}
