/* Reset and base styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: #ffffff;
  color: #111;
}


/* Header and Nav */
header {
  background: #222222;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}


header h1 {
  margin: 0;
  font-size: 1.5rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #6C63FF;
}

/* Hero Section */
.hero {
  background: url('assets/hero.png') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: #6C63FF;
  color: white;
  text-decoration: none;
  margin-top: 2rem;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #5848c2;
}

/* Sections */
.section {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section p {
  font-size: 1.1rem;
  color: #333;
}

/* Packages */
.package {
  border: 1px solid #eee;
  padding: 2rem;
  margin-top: 2rem;
  border-radius: 12px;
  background: #f9f9f9;
  transition: transform 0.2s ease;
}

.package:hover {
  transform: translateY(-4px);
}

/* Form */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

form input,
form textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

form input:focus,
form textarea:focus {
  border-color: #6C63FF;
  outline: none;
}

form button {
  padding: 0.75rem;
  background: #6C63FF;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background: #5848c2;
}

.whatsapp {
  display: inline-block;
  margin-top: 1rem;
  color: #25D366;
  text-decoration: none;
  font-weight: bold;
}

/* Footer */
footer {
  background: #f1f1f1;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .section {
    padding: 3rem 1.5rem;
  }
}
