/* Terms and Conditions & Policy Page Styles */

.terms-policy-card {
  border: none;
  border-radius: 12px;
  background: #ffffff;
  margin-bottom: 2rem;
}

.terms-policy-content {
  color: #333;
  line-height: 1.8;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e0e0e0;
}

.subsection-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.section-number {
  font-size: 1.25rem;
  font-weight: 600;
  color: #34495e;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.content-text {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
  text-align: justify;
}

.content-list {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
}

.content-list li {
  margin-bottom: 0.75rem;
  color: #555;
  line-height: 1.7;
}

.license-header {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #007bff;
  margin-bottom: 2rem;
}

.page-header-version {
  font-size: 1rem;
  color: #6c757d;
  font-weight: 500;
  margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }

  .subsection-title {
    font-size: 1.25rem;
  }

  .section-number {
    font-size: 1.1rem;
  }

  .content-text {
    font-size: 0.95rem;
  }

  .terms-policy-card .card-body {
    padding: 1.5rem !important;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.25rem;
  }

  .subsection-title {
    font-size: 1.1rem;
  }

  .content-text {
    font-size: 0.9rem;
  }

  .terms-policy-card .card-body {
    padding: 1rem !important;
  }

  .content-list {
    margin-left: 1rem;
    padding-left: 0.5rem;
  }
}

