/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f8f7fc;
  color: #222;
}

/* Navbar */
.navbar {
  background: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
}

.navbar .logo {
  font-size: 1.4rem;
  font-weight: bold;
  color: #6c3bff;
}

.navbar ul {
  display: flex;
  list-style: none;
}

.navbar ul li {
  margin-left: 1.5rem;
}

.navbar ul li a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}

.navbar ul li a:hover {
  color: #6c3bff;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: #f0ebff;
}

.hero h1 {
  font-size: 2.5rem;
  color: #6c3bff;
  margin-bottom: 1rem;
}

.hero p {
  max-width: 700px;
  margin: 0 auto 2rem;
}

.hero .btn {
  background: #6c3bff;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.hero .btn:hover {
  background: #5329d9;
}

/* Features */
.features {
  padding: 3rem 2rem;
  text-align: center;
}

.features h2 {
  margin-bottom: 2rem;
  color: #6c3bff;
}

.feature-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 300px;
  text-align: left;
}

.card h3 {
  margin-bottom: 0.75rem;
  color: #333;
}

/* FAQ */
.faq {
  padding: 3rem 2rem;
  background: #f9f6ff;
}

.faq h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #6c3bff;
}

details {
  margin-bottom: 1rem;
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  cursor: pointer;
}

summary {
  font-weight: bold;
}

/* Footer */
.footer {
  background: #222;
  color: #ddd;
  padding: 2rem;
  text-align: center;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer h4 {
  color: #fff;
  margin-bottom: 1rem;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin: 0.5rem 0;
}

.footer ul li a {
  text-decoration: none;
  color: #bbb;
  transition: color 0.3s;
}

.footer ul li a:hover {
  color: #fff;
}
