/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

a {
  text-decoration: none;
  color: #667eea;
}

/* Hero Section */
.hero {
  background: linear-gradient(90deg, #667eea, #764ba2);
  color: #fff;
  padding: 80px 20px 50px;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

/* Container */
.container {
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 20px;
}

/* Section Titles */
.section-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #333;
}

.section {
  margin-bottom: 40px;
}

.terms-section p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
  text-align: justify;
}

/* Links */
a {
  color: #667eea;
  transition: all 0.3s ease;
}

a:hover {
  color: #556cd6;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}
