/* Global styles */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #0e1e26, #521350);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  padding: 0 20px;
}

.container {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 16px;
  max-width: 800px;
  width: 100%;
  box-sizing: border-box;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fff;
}

.sub, .legal, .copyright {
  font-size: 1rem;
  color: #ccc;
}

p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #ccc;
}

.footer-links {
  margin-top: 1rem;
  font-size: 0.8rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  margin: 0 4px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.copyright {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: #666;
}

/* For the forms (applies to all pages with forms) */
form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

input {
  padding: 0.8rem 1rem;
  width: 80%;
  max-width: 350px;
  border: none;
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 1rem;
  background-color: #fff;
  color: #333;
}

button {
  padding: 0.7rem 1.5rem;
  background: #00ff88;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #00cc70;
}

/* For the Terms, Privacy, and Cookies pages specifically */
.terms-page, .privacy-page, .cookies-page {
  padding: 4rem 2rem;
}

.terms-page h1, .privacy-page h1, .cookies-page h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.terms-page p, .privacy-page p, .cookies-page p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #ccc;
  line-height: 1.6;
}

.legal {
  font-size: 0.75rem;
  color: #aaa;
  margin-top: 1rem;
}

.legal a {
  color: #00ff88;
  text-decoration: none;
}

.legal a:hover {
  text-decoration: underline;
}

/* Small screens (Mobile responsiveness) */
@media (max-width: 768px) {
  body {
    padding: 10px;
  }

  .container {
    padding: 1rem;
  }

  h1 {
    font-size: 1.6rem;
  }

  .sub, .legal, .copyright {
    font-size: 0.9rem;
  }

  p {
    font-size: 1rem;
  }

  .footer-links a {
    font-size: 0.75rem;
  }
}
