/* Import fonts */
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@700&display=swap");

* {
  margin: 0;
}

body {
  font-family: "Lato", sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.7;
  overflow-x: hidden;
}

#main-content {
  padding: 60px 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 60px 20px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.hero-content h1 {
  font-family: "Open Sans", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.hero-content p {
  font-size: 1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 10px;
}

/* Terms of Use Section */
.terms-of-use {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.terms-content h2 {
  font-family: "Open Sans", sans-serif;
  font-size: 1.75rem;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #2c3e50;
  font-weight: bold;
}
.terms-content h4 {
  font-family: "Open Sans", sans-serif;
  font-size: 1.5rem;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #2c3e50;
  text-decoration: underline;
}
.terms-content p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #555;
}

.terms-content .terms-list {
  padding-left: 40px;
  margin-bottom: 20px;
  max-width: 100%;
}

.terms-content .terms-list li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  word-break: normal;
  overflow-wrap: break-word;
  width: 100%;
}

.terms-content strong {
  color: #000;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .terms-content h2 {
    font-size: 1.5rem;
  }
}
