body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f4f4;
  color: #222;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.logo {
  font-weight: bold;
  font-size: 20px;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #333;
}

.cta {
  background: #ff7a00;
  padding: 10px 18px;
  border-radius: 5px;
  color: white;
}

/* HERO */
.hero {
  height: 500px;
  background: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e") center/cover no-repeat;
}

.hero-overlay {
  background: rgba(0,0,0,0.6);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.hero-overlay h1 {
  font-size: 45px;
}

.hero-btn {
  background: #ff7a00;
  padding: 14px 30px;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 15px;
}

/* SERVICES */
.services {
  padding: 80px 20px;
  background: white;
  text-align: center;
}

.service {
  max-width: 600px;
  margin: 20px auto;
  background: #f8f8f8;
  padding: 25px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.service:hover {
  background: #ececec;
}

.service-text {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  margin-top: 10px;
  text-align: left;
}

/* ABOUT */
.about {
  padding: 70px 20px;
  text-align: center;
}

/* CONTACT */
.contact {
  padding: 70px 20px;
  background: white;
  text-align: center;
}

.contact-info {
  margin-bottom: 30px;
}

form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

form input, form textarea {
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  padding: 12px;
  background: #ff7a00;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  margin-top: 40px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #222;
  color: white;
}

/* MOBIL */
@media(max-width: 768px) {
  header {
    flex-direction: column;
  }
}