/* ===== GENERAL ===== */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  background: #f0f2f5;
  color: #333;
  line-height: 1.6;
}

/* ===== HEADER ===== */
/* ===== PAGE HEADER (TERMS – SECONDARY HEADER) ===== */
.terms-header {
  background: linear-gradient(135deg, #0b132b, #0b132b);
  color: #fff;
  padding: 40px 20px;
  text-align: left;
}

.terms-header-container {
  max-width: 100%;
  margin: 0;
  padding-left: 40px;
  padding-right: 20px;
}

.terms-header h1 {
  font-size: 44px;
  margin-bottom: 10px;
}

.terms-header p {
  font-size: 18px;
}

/* Back link */
.back-link {
  color: #22c55e;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
  opacity: 0.8;
}

.back-link:hover {
  opacity: 1;
}

/* ===== CONTENT CONTAINER (TERMS PAGE ONLY) ===== */
.terms-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 60px;
}

/* ===== TERMS CARDS ===== */
.terms-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: left;
}

.terms-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.terms-card h2 {
  font-size: 22px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0b132b;
  border-left: 4px solid #22c55e;
  padding-left: 10px;
}

.terms-card p {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.8;
}

.terms-card a {
  color: #1c2541;
  text-decoration: underline;
  font-weight: 500;
}

.terms-card a:hover {
  color: #0b132b;
  text-decoration: none;
}

/* ===== FOOTER (LOCAL ONLY) ===== */
.footer {
  background: #1c2541;
  color: #fff;
  padding: 25px 0;
  text-align: center;
  font-size: 14px;
}

.footer a {
  color: #ffd700;
  text-decoration: none;
  margin: 0 5px;
}

.footer a:hover {
  text-decoration: underline;
}
