* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.6;
}

.hero-image {
  margin: 40px auto;
  text-align: center;
  padding: 0 5%;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background-color: #350f94;
  border-bottom: 1px solid #cdcdcd;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 1.2rem;
}

.logo img {
  height: 50px;
  width: auto;
  border-radius: 50%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.auth-buttons {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.btn.light {
  background: #f1f1f1;
  text-decoration: none;
  color:#350f94;
}

/* New pill button style like image */
.btn.pill {
  background-color: #f3f3f3;
  border-radius: 200px;
  padding: 12px 20px;
  margin: 5px;
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  transition: background 0.25s;
  text-decoration: none;
  color: #350f94;

}

.btn.pill:hover {
  background-color: #e4e4e4;
}

.hero {
  max-width: 900px;
  margin: 60px auto;
  text-align: center;
  padding: 0 20px;
  color: #350f94;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero em {
  font-style: italic;
  font-family: Georgia, serif;
}

.subheading {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.buttons-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background-color: #fff;
  padding: 15px 20px;
  gap: 10px;
  border-top: 1px solid #eee;
}

.mobile-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.heroperson {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background-color: #f8f8f8;
  padding: 40px 5%;
  border-radius: 15px;
  margin: 60px auto;
  max-width: 1100px;
  flex-wrap: wrap;
  pointer-events: none;
}

.heroperson-content {
  flex: 1 1 60%;
}

.heroperson-text {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #333;
  font-style: italic;
}

.heroperson-profile {
  flex: 1 1 30%;
  text-align: center;
}

.heroperson-profile img {
  width: 150px;
  height: 150px;
  border-radius: 25%;
  object-fit: cover;
  margin-bottom: 10px;
}

.profile-info h4 {
  margin: 5px 0 0;
  font-size: 1.1rem;
  font-weight: bold;
}

.profile-info p {
  font-size: 0.95rem;
  color: #666;
}

/* Responsive behavior */
@media (max-width: 768px) {
  .heroperson {
    flex-direction: column;
    text-align: center;
    padding: 7% 3%;
  }

  .heroperson-content {
    order: 1;
  }

  .heroperson-profile {
    order: 2;
    margin-top: 20px;
  }

  .heroperson-text {
    font-size: 1.05rem;
  }

  .heroperson-profile img {
    width: 120px;
    height: 120px;
  }

  .profile-info h4 {
    font-size: 1.2rem;
  }

  .profile-info p {
    font-size: 0.9rem;
  }
}


@media (max-width: 768px) {
  .nav-links,
  .auth-buttons {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero .highlight {
    font-size: 1.8rem;
  }
}

