/* Terms Page Specific Styles */

/* Terms Section */
.terms {
  background: white;
  padding: 100px 0;
}

.terms-content {
  background: white;
  padding: 50px 0;
}

.terms-intro {
  text-align: center;
  margin-bottom: 4rem;
  padding: 3rem;
  background: linear-gradient(90deg, var(--primary-blue), var(--dark-slate));
  color: white;
}

.terms-intro h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.terms-intro p {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.6;
}

.terms-section {
  margin-bottom: 3rem;
  padding: 2.5rem;
  background: var(--light-gray);
  border-left: 5px solid var(--primary-blue);
}

.terms-section h3 {
  color: var(--dark-slate);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.terms-section p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: #555;
}

.terms-section ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.terms-section li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
  color: #555;
}

.terms-section strong {
  color: var(--dark-slate);
  font-weight: 700;
}

.important-notice {
  background: var(--primary-blue);
  color: white;
  padding: 2rem;
  margin: 2rem 0;
  border: 3px solid var(--dark-slate);
}

.important-notice h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.important-notice p {
  margin: 0;
  line-height: 1.6;
}

.section-highlight {
  background: rgba(114, 177, 255, 0.1);
  padding: 1.5rem;
  border-left: 4px solid var(--primary-blue);
  margin: 2rem 0;
}

.section-highlight p {
  margin: 0;
  font-weight: 600;
  color: var(--dark-slate);
  line-height: 1.6;
}

/* Responsive Design for Terms */
@media (max-width: 768px) {
  .terms-intro {
    padding: 2rem;
  }

  .terms-intro h2 {
    font-size: 2.2rem;
  }

  .terms-section {
    padding: 1.5rem;
  }

  .terms-section h3 {
    font-size: 1.5rem;
  }

  .important-notice {
    padding: 1.5rem;
  }

  .section-highlight {
    padding: 1rem;
  }
}
