.terms-header {
  background: linear-gradient(90deg, #0f53df, #0d3dbf);
  text-align: center;
  color: #fff;
  padding: 60px 20px 40px;
}

.terms-header h1 {
  margin: 0;
  font-size: 2.8em;
  font-weight: bold;
}

.last-updated {
  font-size: 1.1em;
  margin-top: 10px;
}

.underline {
  width: 60px;
  height: 4px;
  background-color: orange;
  margin: 15px auto 0;
  border-radius: 2px;
}

.terms-content {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.terms-alert {
  background-color: #fff3cd;
  color: #856404;
  border-left: 5px solid orange;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.terms-section {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: relative;
  padding-left: 60px;
}

.terms-section.orange {
  background-color: #fff1e6;
}

.terms-section.blue {
  background-color: #e7f0ff;
}

.terms-section.green {
  background-color: #e6f9ec;
}

.section-number {
  position: absolute;
  top: 24px;
  left: 20px;
  width: 30px;
  height: 30px;
  background: #ff7900;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  font-size: 16px;
}

.terms-section.blue .section-number {
  background: #1a73e8;
}

.terms-section.green .section-number {
  background: #0f9d58;
}

.terms-section h2 {
  color: #1a1a1a;
  margin-bottom: 16px;
}

.terms-section .sub-block {
  background-color: #fff;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  border-left: 4px solid #ddd;
}

.definition-list {
  list-style: none;
  padding-left: 0;
}

.definition-list li {
  padding-left: 12px;
  border-left: 3px solid #1976d2;
  margin-bottom: 10px;
}

.contact-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.contact-grid div {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  flex: 1 1 30%;
  text-align: center;
}

.contact-grid div strong {
  color: #0b9444;
  display: block;
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
  }

  .terms-section {
    padding-left: 50px;
  }

  .terms-header h1 {
    font-size: 2em;
  }
}
.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0a7954;
}

.contact-header p {
    font-size: 18px;
    color: #555;
}