* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  background-color: #f9f9f9;
}

.top-bar {
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  border-bottom: 1px solid #ddd;
}

.logo {
  font-size: 24px;
  font-weight: 700;
}

.logo .wp {
  color: #f0c000;
}

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

nav ul li a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

.hero-section {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 60px;
  color: #fff;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
}

.hero-content p {
  font-size: 20px;
  margin: 15px 0;
}

.buttons {
  margin-top: 20px;
}

.btn {
  text-decoration: none;
  padding: 12px 25px;
  margin-right: 15px;
  font-weight: 600;
  border-radius: 5px;
}

.btn-white {
  background: #fff;
  color: #000;
}

.btn-blue {
  background: #00aaff;
  color: #fff;
}

.services {
  display: flex;
  justify-content: space-between;
  padding: 60px;
  gap: 30px;
  flex-wrap: wrap;
}

.service-box {
  flex: 1;
  padding: 30px;
  border-radius: 10px;
  color: #fff;
  min-width: 280px;
}

.service-box img {
  width: 60px;
  margin-bottom: 20px;
}

.service-box h2 {
  margin-bottom: 10px;
}

.service-box p {
  font-size: 15px;
}

.blue {
  background: #007bff;
}

.white {
  background: #ffffff;
  color: #000;
  border: 1px solid #ddd;
}

.dark {
  background: #333333;
}
