/* terms-and-conditions.css */

body {
  margin:       0;
  padding:      0;
  font-family:  'Roboto', sans-serif;
  background:   #fafafa;
  color:        #333;
}

.tc-container {
  max-width:    800px;
  margin:       2rem auto;
  padding:      1rem 1.5rem;
  background:   #fff;
  border-radius:8px;
  box-shadow:   0 2px 8px rgba(0, 0, 0, 0.1);
}

.tc-container h1 {
  font-size:    2rem;
  margin-bottom:1rem;
  text-align:   center;
}

.tc-container h2 {
  font-size:    1.25rem;
  margin-top:   1.5rem;
  margin-bottom:.5rem;
  color:        #2a2a2a;
  border-bottom:2px solid #e0e0e0;
  padding-bottom:.25rem;
  text-align: left;
}

.tc-container p,
.tc-container ul {
  line-height:  1.6;
  margin-bottom:1rem;
}

.tc-container ul {
  padding-left: 1.25rem;
}

.tc-container li {
  margin-bottom:.5rem;
}

.tc-container a {
  color:        #0077cc;
  text-decoration: none;
}

.tc-container a:hover {
  text-decoration: underline;
}

.tc-footer {
  margin-top:   2rem;
  font-size:    .9rem;
  color:        #666;
  text-align:   center;
  border-top:   1px solid #e0e0e0;
  padding-top: 1rem;
}

.tc-footer a {
  color:        #0077cc;
}