/* Terms & Conditions Page Styles */

.main-container {
  min-height: 100vh;
  padding-top: 100px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  line-height: 1.6;
  color: #333;
}

.legal-header {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 2px solid #e0e0e0;
}

.legal-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.last-updated {
  font-size: 1rem;
  color: #666;
  margin: 0;
}

.terms-section,
.privacy-section {
  margin-bottom: 50px;
}

.terms-section h2,
.privacy-section h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e0e0e0;
}

.legal-section {
  margin-bottom: 35px;
}

.legal-section:first-of-type {
  margin-top: 40px;
}

.legal-section h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 15px;
}

.legal-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #444;
}

.legal-section ul {
  margin: 15px 0;
  padding-left: 25px;
}

.legal-section li {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 10px;
  color: #444;
}

.contact-section {
  background-color: #f5f9ff;
  padding: 50px;
  border-radius: 8px;
  margin-top: 50px;
  border: 1px solid #e0e7ee;
}

.contact-section h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 20px;
}

.contact-info {
  margin-top: 20px;
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #444;
}

/* Links styling */
a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Strong text styling */
strong {
  font-weight: 600;
  color: #1a1a1a;
}

/* Responsive design */
@media (max-width: 768px) {
  .legal-content {
    padding: 30px 15px;
  }

  .legal-header h1 {
    font-size: 2rem;
  }

  .terms-section h2,
  .privacy-section h2 {
    font-size: 1.7rem;
  }

  .legal-section h3 {
    font-size: 1.2rem;
  }

  .legal-section p,
  .legal-section li {
    font-size: 1rem;
  }

  .contact-section {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .main-container {
    padding-top: 80px;
  }

  .legal-header h1 {
    font-size: 1.8rem;
  }

  .terms-section h2,
  .privacy-section h2 {
    font-size: 1.5rem;
  }

  .legal-section h3 {
    font-size: 1.1rem;
  }
}
