@import url("https://fonts.googleapis.com/css2?family=Inter&display=swap");

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #ffffff;
  font-family: "Inter", sans-serif;
}

/* Header Styles */
header {
  width: 100%;
  background: transparent;
  padding: 25px 0;
}

header nav {
  width: 95%;
  margin: auto;
}

header .logo h2 {
  font-size: 1.5em;
}
.logo {
  color: #000;
  font-size: 30px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 15px;
}
.logo span {
  border: 1px solid #000;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
}

.arrow-animate {
  display: inline-block;
  animation: arrowWiggle 1s ease-in-out infinite;
}

@keyframes arrowWiggle {
  0% { transform: translateX(0); }
  50% { transform: translateX(-4px); }
  100% { transform: translateX(0); }
}

header nav a {
  color: #1a1a1a;
  text-decoration: none;
}

/* Terms Container */
.terms-container {
  width: 95%;
  margin: auto;
}

.terms-header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  color: #000;
  border-bottom: 1px solid #000;
}

.terms-header h1 {
  font-size: 4rem;
}

.terms-header p {
  font-size: 1.3em;
  padding: 5px 0 0 0;
}

/* Terms Content */
.terms-content {
  line-height: 1.8;
  font-size: 1.1em;
}

.terms-content h2 {
  font-size: 2em;
  margin-top: 20px;
}

.terms-content p {
  margin-bottom: 20px;
}

.terms-content ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.terms-content ul li {
  font-size: 1.1em;
  margin-bottom: 10px;
}

/* Footer */
footer {
  text-align: center;
  background-color: #000;
  color: #fff;
  padding: 15px 0;
  margin-top: 40px;
}

footer p {
  font-size: 1em;
}

/* Links */
a {
  color: #0066cc;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 600;
}



/* Responsive Design */
@media (max-width: 1100px) {
  header .logo h2 {
    font-size: 1em;
  }
  header nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .terms-container {
    padding: 8px;
  }

  .terms-header h1 {
    font-size: 2.6em;
  }

  .terms-content h2 {
    font-size: 1.3em;
  }

  .terms-content p,
  .terms-content ul li {
    font-size: 1em;
  }
}


@media (max-width: 600px) {
  header .logo h2 {
    font-size: 1em;
  }
  header nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .terms-container {
    padding: 8px;
  }

  .terms-header h1 {
    font-size: 1.5em;
  }

  .terms-content h2 {
    font-size: 1.3em;
  }

  .terms-content p,
  .terms-content ul li {
    font-size: 1em;
  }
}

@media (max-width: 390px) {
  header {
    padding: 15px 0;
  }
  header .logo h2 {
    font-size: 1.6rem;
  }
  .logo span {
    padding: 5px 7px;
    font-size: 1rem;
  }
  .terms-header p {
    font-size: 1.1em;
  }
}
