/* Administratiekantoor J.G. Schellevis — v1.1 */

* {
  box-sizing: border-box;
}

body {
  background: #e8ecf4;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
}

#wrap {
  padding: 48px 20px 60px;
}

/* ── Kaart ── */
.container {
  max-width: 680px !important;
  width: 100%;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 !important;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 32px rgba(0, 30, 100, 0.13);
  overflow: hidden;
}

/* ── Header-blok ── */
#page-header {
  padding: 0;
}

.site-header {
  background: linear-gradient(140deg, #002f8f 0%, #1a52c4 100%);
  padding: 44px 52px 40px;
}

.site-header h1 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 46px;
  color: #fff;
  margin: 0 0 8px 0;
  padding: 0;
  border: none;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.site-header .ondertitel {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  letter-spacing: 0.03em;
}

/* ── Inhoud ── */
.site-body {
  padding: 44px 52px 52px;
}

p {
  font-size: 17px;
  line-height: 1.75;
  color: #3d3d3d;
  margin: 0 0 18px 0;
}

/* ── Diensten-lijst ── */
ul {
  list-style: none;
  padding: 0;
  margin: 4px 0 24px 0;
  border: 1px solid #e4e9f5;
  border-radius: 6px;
  overflow: hidden;
}

ul li {
  font-size: 17px;
  line-height: 1.5;
  color: #3d3d3d;
  padding: 13px 18px 13px 46px;
  position: relative;
  border-bottom: 1px solid #e4e9f5;
  font-family: 'Roboto', sans-serif;
}

ul li:last-child {
  border-bottom: none;
}

ul li::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #1a52c4;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── Sectiekop ── */
h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #002f8f;
  margin: 36px 0 12px 0;
  padding-top: 32px;
  border-top: 1px solid #e4e9f5;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Links ── */
a {
  color: #1a52c4;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ── Contactregel ── */
.contact-link {
  display: inline-block;
  margin-top: 4px;
  background: #002f8f;
  color: #fff !important;
  padding: 11px 24px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none !important;
  transition: background 0.18s;
}

.contact-link:hover {
  background: #1a52c4;
}

/* ── Responsive ── */
@media (max-width: 620px) {
  #wrap {
    padding: 0;
  }

  .container {
    border-radius: 0;
  }

  .site-header {
    padding: 32px 24px 28px;
  }

  .site-header h1 {
    font-size: 34px;
  }

  .site-header .ondertitel {
    font-size: 15px;
  }

  .site-body {
    padding: 28px 24px 40px;
  }

  p, ul li {
    font-size: 16px;
  }
}
