* {
  margin: 0;
  padding: 0;
  box-sizing: border;
  font-family: 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

body {
  background-color: #f8f8f8;
  color: #333;
  line-height: 1.65;
  scroll-behavior: smooth;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 8%;
  background-color: #fff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  width: 150px;
  object-fit: contain;
}

.nav-links a {
  margin-left: 25px;
  text-decoration: none;
  color: #555;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease, transform 0.2s ease;
}

.nav-links a:hover {
  color: #387ed1;
  transform: translateY(-2px);
}


.hero {
  text-align: center;
  margin: 60px auto 40px auto;
}

.banner {
  max-width: 85%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
}


.content {
  text-align: center;
  padding: 60px 10%;
  max-width: 800px;
  margin: 0px auto 80px auto;
}

.content h1 {
  font-size: 44px;
  font-weight: 600;
  color: #2a2a2a;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.content h2 {
  font-size: 20px;
  color: #555;
  margin-bottom: 35px;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 17px;
  background-color: #387ed1;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  border: none;
  box-shadow: 0 4px 12px rgba(56, 126, 209, 0.3);
}

.btn:hover {
  background-color: #2f65b3;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(56, 126, 209, 0.45);
}
