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

body {
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  color: #222;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  border-bottom: 1px solid #eee;
}

.logo img {
  height: 40px;
}

nav a {
  margin-left: 20px;
  font-weight: 500;
}

.coming-soon-btn {
  padding: 8px 15px;
  background: #e6f0ff;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
}

.launch-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5% 10%;
  min-height: 80vh;
}

.text-section {
  max-width: 50%;
}

.launching-soon {
  color: #3578e5;
  font-weight: bold;
  margin-bottom: 10px;
}




.terms-section {
    background-color: #fff;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.terms-title {
    text-align: center;
    color: #222;
    margin-bottom: 0.5rem;
}

.terms-updated {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.terms-intro {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.terms-list {
    padding-left: 1.2rem;
    list-style-type: disc;
}

.terms-list li {
    margin-bottom: 0.75rem;
    line-height: 1.5;
}