/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

/* Navbar */
/* .navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
} */

.navbar img {
  border-radius: 6px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.logo {
  display: flex;
  align-items: center;
  width: 100%;
}

.logo-icon {
  background-color: #6a0dad;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 0.5rem;
  border-radius: 50%;
  margin-right: 0.5rem;
}

.logo-text {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  width: 100%;
}

.nav-links a {
  margin: 0 1rem;
  text-decoration: none;
  color: #333;
}

.nav-links .btn {
  margin-left: 1rem;
}

/* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
  padding: 3rem 2rem;
  background-color: #fff;
  margin-top: 80px;
}

.hero-text {
  /* margin-top: 80px; */
  flex: 1;
  max-width: 500px;
}

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

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.hero-illustration {
  flex: 1;
  text-align: center;
}

.hero-illustration img {
  /* margin-top: 100px; */
  max-width: 100%;
  width: 600px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1rem;
}

.btn.primary {
  background-color: #6a0dad;
  color: #fff;
}

/* Footer */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 1rem;
  background-color: #f1f1f1;
  font-size: 0.9rem;
  color: #666;
}