* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #fff;
  color: #000;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  background: #000;
  color: #fff;
  padding: 5px 10px;
  display: inline-block;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 60px 40px;
  background: #d8eafd; /* light blue-ish */
  position: relative;
}

.hero-text {
  flex: 1;
  min-width: 250px;
}

.hero-text h1 {
  font-size: 42px;
  font-weight: bold;
  background: #000;
  color: #fff;
  display: inline-block;
  padding: 10px 15px;
  line-height: 1.2;
}

.btn {
  margin-top: 20px;
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #000;
  background: transparent;
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

.hero-image {
  flex: 1;
  text-align: right;
  min-width: 300px;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

.cta {
  text-align: center;
  padding: 40px;
  background: #fff;
}

.btn-large {
  font-size: 24px;
  font-weight: bold;
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 15px 30px;
  display: inline-block;
}