/* Main Content Area */
.terms-container {
    background-color: white;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .terms-container h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
  }
  
  .terms-content {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
  }
  
  .terms-content h3 {
    margin-top: 20px;
    font-size: 24px;
    color: #27ae60;
  }
  
  .terms-content p {
    margin-bottom: 15px;
  }
  
  .terms-content a {
    color: #27ae60;
    text-decoration: none;
  }
  
  .terms-content a:hover {
    text-decoration: underline;
  }
/* Responsive Styles */
@media (max-width: 768px) {
  
  
    .terms-container {
      padding: 20px;
    }
  
    .terms-content {
      font-size: 16px;
    }
  
    .terms-content h3 {
      font-size: 20px;
    }
  }
    