 
.top-bar {
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 14px;
  padding: 8px 0;
}

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  position: relative;
}

.main-nav {
  display: flex;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #000;
  border-radius: 2px;
}

/* Mobiel */
@media (max-width: 768px) {
  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    width: 200px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  }
  .main-nav.active {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
}

/* CTA blok */
.cta {
  text-align: center;
  background: #f7f7f7;
  padding: 40px;
  border-radius: 10px;
  margin-top: 30px;
}

.cta .wp-block-button__link {
  background: #747ad3;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
}

.site-footer {
  background: #000;
  color: #fff;
  padding: 30px 0 10px;
}

.site-footer a {
  color: #747ad3;
  text-decoration: none;
}

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

.site-footer .copyright {
  text-align: center;
  font-size: 13px;
  border-top: 1px solid #333;
  padding-top: 10px;
  margin-top: 20px;
}
