/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
 
}
body {
  font-family: 'Segoe UI', sans-serif;
  background: #f8fafa;
  color: #f1eeee;
  line-height: 1.7;
}

/* Hero Section */
.terms-hero {
  background: #9be1c1;
  padding: 120px 20px;
  text-align: center;
  color: #060606;
}

.terms-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.terms-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Terms Section */
.terms-section {
  padding: 50px 20px; 
  background: linear-gradient(135deg, #95967a, #707057);
}

.terms-container {
  max-width: 900px;
  margin: auto;
  padding: 30px;
   background: linear-gradient(135deg, #71e7e9, #aae7df);
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.terms-container h2 {
  color: #1f3d7a;
  margin: 30px 0 10px;
  font-size: 1.4rem;
}

.terms-container p,
.terms-container ul {
  margin-bottom: 15px;
  font-size: 1rem;
}

.terms-container ul {
  padding-left: 20px;
}

.terms-container li {
  margin-bottom: 8px;
}

a {
  color: #0078cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Summary Box */
.summary-box {
  background: #ededed;
  border-left: 4px solid #3c6f9c;
  padding: 20px;
  margin-top: 40px;
  border-radius: 6px;
}

.summary-box h3 {
  margin-bottom: 10px;
  color: #2a4b7c;
}

/* SEO Note */
.seo-tag {
  font-size: 0.85rem;
  color: #777;
  margin-top: 25px;
}

/* Responsive */
@media (max-width: 768px) {
  .terms-hero h1 {
    font-size: 2rem;
  }

  .terms-container {
    padding: 20px;
  }

  .terms-container h2 {
    font-size: 1.2rem;
  }

  .terms-container p,
  .terms-container ul {
    font-size: 0.95rem;
  }
}
