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

body {
  font-family: 'Segoe UI', sans-serif;
}

header {
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
}

.logo img {
  height: 110px;
}

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

nav ul li {
  position: relative;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 10px;
  transition: color 0.3s;
}

nav a:hover {
  color: #e60000;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 30px;
  left: 0;
  background: white;
  padding: 15px;
  width: 300px;
  border: 1px solid #ddd;
  box-shadow: 0 5px 10px rgba(0,0,0,0.15);
  z-index: 999;
}

.dropdown-content p {
  margin-bottom: 10px;
  color: #333;
  line-height: 1.5;
  font-size: 14px;
}

nav li:hover .dropdown-content {
  display: block;
}

.contact-info p {
  font-size: 14px;
  color: #444;
}

.hero img {
  width: 100%;
  height: calc(100vh - 80px);
  object-fit: cover;
}

footer {
  text-align: center;
  padding: 20px;
  background: #212020;
  font-size: 14px;
  color: #666;
}
