/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.7;
  background: #f9fcff;
  color: #333;
}

/* Header */
.main-header {
  background-color: #004d80;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

.main-header h1 {
  font-size: 32px;
}

.main-header .subtitle {
  font-size: 16px;
  margin-top: 8px;
}

/* Content Section */
.terms-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.terms-content h2 {
  font-size: 20px;
  color: #004d80;
  margin-bottom: 10px;
  margin-top: 30px;
}

.terms-content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
}

.terms-content a {
  color: #007acc;
  text-decoration: none;
}

.terms-content a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background-color: #004d80;
  color: white;
  text-align: center;
  padding: 15px 10px;
  font-size: 14px;
  margin-top: 60px;
}

/* Responsive */
@media (max-width: 600px) {
  .main-header h1 {
    font-size: 26px;
  }

  .terms-content h2 {
    font-size: 18px;
  }

  .terms-content p {
    font-size: 14px;
  }
}
