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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

header.hero {
  background: url('pkintermedia-bkgr.png') center/cover no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 2rem;
  width: 100%;
}

main {
  padding: 2rem;
}

.about, .services, .contact {
  margin-bottom: 3rem;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.box {
  flex: 1;
  min-width: 250px;
  background: white;
  padding: 1rem;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

form input, form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  background: #0074D9;
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 5px;
  cursor: pointer;
}

form button:hover {
  background: #005fa3;
}

footer {
  text-align: center;
  font-size: 0.9rem;
  padding: 2rem 1rem;
  background: #f1f1f1;
}

footer a {
  color: #0074D9;
  text-decoration: none;
}
