* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

body {
  color: #333;
  background: #f7f9fb;
  line-height: 1.6;
}

a {
  color: #0078d7;
  text-decoration: none;
  font-weight: 500;
}
a:hover {
  color: #005fa3;
}

/* Header */
header {
  background: #0078d7;
  color: white;
  padding: 0.6rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}
.logo {
  font-weight: 700;
  font-size: 1.2rem;
}

/* Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}
.dropbtn {
  background: #005fa3;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 4px;
}
.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background: white;
  min-width: 160px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.dropdown-content a {
  color: #0078d7;
  padding: 0.75rem 1rem;
  display: block;
}
.dropdown-content a:hover {
  background: #f0f0f0;
}
.dropdown:hover .dropdown-content {
  display: block;
}

/* Hero */
.hero {
  text-align: center;
  padding: 4rem 1rem;
  background: #e7f2ff;
}
.hero h1 {
  font-size: 2.5rem;
  color: #0078d7;
  margin-bottom: 1rem;
}
.btn {
  display: inline-block;
  background: #0078d7;
  color: white;
  padding: 0.7rem 1.4rem;
  border-radius: 5px;
  margin-top: 1rem;
  transition: 0.3s;
}
.btn:hover {
  background: #005fa3;
}

/* Sections */
.section {
  padding: 3rem 1rem;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}
.section.light {
  background: #f0f6fb;
}
.section h2 {
  color: #0078d7;
  margin-bottom: 1.5rem;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.service-card {
  background: #0078d7;
  color: white;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  transition: 0.3s;
}
.service-card:hover {
  background: #005fa3;
  transform: translateY(-3px);
}

/* Info & prijzen */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-align: left;
}
.price-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.price-item {
  background: white;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  padding: 1rem;
}
.price-item h3 {
  color: #0078d7;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

/* Contact */
.contact {
  text-align: center;
}
.btn-whatsapp {
  display: inline-block;
  background: #25d366;
  color: white;
  padding: 0.8rem 1.6rem;
  border-radius: 5px;
  margin-top: 1rem;
}
.btn-whatsapp:hover {
  background: #1ebe57;
}

/* Footer */
footer {
  background: #0078d7;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero h1 { font-size: 2rem; }
}

.about-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.about-container p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #444;
}
.about-container strong {
  color: #0078d7;
}
