body {
  background: #151515 !important;
  min-height: 100vh;
  margin: 0;
  font-family: 'Poppins', Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tandc-container {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tandc-card {
  background: #151515;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
  padding: 40px 32px;
  max-width: 700px;
  width: 100%;
  color: #fff;
}

.tandc-title {
  font-family: 'Poppins', Arial, sans-serif;
  text-align: center;
  font-size: 1.875rem;
  font-weight: 800;
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}

.tandc-content h2 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 10px;
  color: #fff;
}

.tandc-content p {
  color: #d1d1d1;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.tandc-content strong {
  color: #fff;
  font-weight: 600;
}

@media (max-width: 800px) {
  .tandc-card {
    padding: 24px 8px;
    max-width: 98vw;
  }
  .tandc-title {
    font-size: 1.3rem;
  }
} 