* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Navbar */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-weight: bold;
  font-size: 20px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul li {
  display: inline-block;
}

nav ul li a {
  text-decoration: none;
  color: black;
  font-weight: 500;
}

.btn {
  padding: 8px 15px;
  border: 1px solid #444;
  background: #f5f5f5;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: black;
  color: white;
}

/* Hero Section */
.hero {
  background: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1350&q=80") 
              no-repeat center center/cover;
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.hero p {
  max-width: 600px;
  margin-bottom: 20px;
}

.hero .btn {
  background: white;
  color: black;
  font-weight: bold;
}

/* Content Section */
.content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px;
  gap: 30px;
}

.content p {
  flex: 1;
  line-height: 1.6;
}

.content img {
  flex: 1;
  max-width: 100%;
  border-radius: 5px;
}

/* Responsive */
@media (max-width: 900px) {
  .content {
    flex-direction: column;
  }
}
