:root {
      --primary: #f87171;        /* zachtere roodtint */
      --background: #fefefe;
      --card-bg: #ffffff;
      --text: #2d2d2d;
      --subtle: #6b7280;
      --header-bg: #fff5f5;
    }

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

    body {
      font-family: 'Inter', sans-serif;
      background-color: var(--background);
      color: var(--text);
      line-height: 1.6;
    }

    header {
      text-align: center;
      padding: 2rem 2rem 2.5rem;
      background-color: var(--header-bg);
      color: var(--primary);
    }

    header h1 {
      font-size: 2.4rem;
      margin-bottom: 1rem;
    }

    header p {
      font-size: 1.05rem;
      color: #b91c1c;
    }

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

    .diensten {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 2rem;
    }

    .dienst {
      background-color: var(--card-bg);
      padding: 2rem;
      border-radius: 1rem;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .dienst:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    }

    .dienst h2 {
      font-size: 1.2rem;
      color: var(--primary);
      margin-bottom: 0.5rem;
    }

    .dienst p {
      color: var(--subtle);
    }

    .logo {
      text-align: center;
      padding: 4rem 2rem 2.5rem;
      background-color: #FFFFFF;
    }

    footer {
      text-align: center;
      padding: 2rem 1rem;
      margin-top: 35px;
      font-size: 0.9rem;
      color: #9ca3af;
      background-color: #f9f9f9;
    }

    @media (max-width: 600px) {
      header h1 {
        font-size: 2rem;
      }
    }