/* Legal Pages Styling (terms & privacy) */

body, html {
  margin: 0;
  padding: 0;
  background-color: #111; /* Slightly different background for legal pages */
  color: #eee;
  font-family: "Outfit Variable", sans-serif;
  min-height: 100vh;
  overflow-y: auto; /* Enables scrolling */
}

/* Styling for the Legal Content Container */
.docs-container {
  max-width: 800px;
  width: 90%;
  background-color: #161616;
  padding: 3rem;
  border-radius: 12px;
  margin: 3rem auto;
  line-height: 1.7;
}

/* Header Styling */
h1 {
  text-align: center;
  font-size: 2.2rem;
  color: #22E09A;
  margin-bottom: 1rem;
}

/* Subheading */
h2 {
  font-size: 1.5rem;
  color: #28A085;
  margin-top: 2rem;
  border-bottom: 2px solid #22E09A;
  padding-bottom: 5px;
}

/* Paragraph Styling */
p {
  font-size: 1.1rem;
  color: #ddd;
}

/* Links */
a {
  color: #22E09A;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* List Items */
ul {
  padding-left: 1.5rem;
}

li {
  margin-bottom: 8px;
}

/* Back to Home Button */
.back-home {
  display: block;
  text-align: center;
  margin-top: 2rem;
  font-size: 1.1rem;
  font-weight: bold;
}


/* Center the message div */
#message {
  display: flex;
  align-items: center;
  justify-content: center;
/* Adjust as needed */
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
  padding-top: 20px;
}

/* Responsive mobile view */
@media (max-width: 600px) {
  #message p {
    font-size: 1rem; /* Smaller text size for mobile */
  }

  .docs-container {
    padding: 10px; /* Add some padding on mobile */
  }
}