body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f8f9fa;
  color: #343a40;
  line-height: 1.8;
}

header {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/zaak_voorgevel.png') no-repeat center center;
  background-size: cover;
  color: white;
  padding: 6rem 2rem;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 3.5rem;
  font-weight: 700;
}

header p {
  font-size: 1.4rem;
  font-weight: 300;
  opacity: 0.9;
}

section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
}

section h2 {
  text-align: center;
  font-size: 2.8rem;
  color: #bb100f;
  margin-bottom: 3.5rem;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.about-text {
  flex: 2;
  text-align: left;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.1);
}

.highlight-section {
  background: #f0ebe5;
}

.services-grid, .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.service-card, .feature {
  background: white;
  padding: 2.5rem;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover, .feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.service-card i, .feature i {
  font-size: 3.5rem;
  color: #bb100f;
  margin-bottom: 1.5rem;
}

.service-card h3, .feature h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #343a40;
}

footer {
  background: #343a40;
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}

footer h2 {
    color: white;
}

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

footer a:hover {
  text-decoration: underline;
}

.contact-info {
  margin: 2rem 0;
}

.contact-info p {
  font-size: 1.1rem;
  margin: 0.5rem 0;
}

.extra-info {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #495057;
  border-radius: 8px;
  display: inline-block;
}

.footer-note {
  margin-top: 3rem;
  font-size: 0.9rem;
  opacity: 0.7;
}

.logo {
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  z-index: 10;
}

.logo img {
  height: 60px;
}

@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
  }
} 