/* Factuurtabel kolomruimte */
.invoice-table th,
.invoice-table td {
  padding-left: 18px;
  padding-right: 18px;
}
.invoice-table th:first-child,
.invoice-table td:first-child {
  padding-left: 8px;
}
.invoice-table th:last-child,
.invoice-table td:last-child {
  padding-right: 8px;
  text-align: right;
}

.invoice-table th,
.invoice-table td {
  text-align: left;
}
/* Factuur eigen gegevens rechtsboven */
.invoice-addresses {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2em;
}
.from-address-right {
  text-align: right;
  min-width: 260px;
}
.to-address {
  min-width: 220px;
}
body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #e0f2e9;
  color: #222;
}
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2rem;
}
.logo {
  display: flex;
  align-items: center;
}
.logo svg {
  max-width: 180px;
  height: auto;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.nav-links li a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links li a:hover {
  color: #4a90e2;
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #4a90e2;
  border-radius: 2px;
  display: block;
}
.section {
  max-width: 800px;
  margin: 3rem auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  padding: 2rem;
}
.section h1, .section h2 {
  color: #4a90e2;
  margin-top: 0;
}
.section ul {
  padding-left: 1.2rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form label {
  font-weight: 500;
}
.contact-form input, .contact-form textarea {
  padding: 0.7rem;
  border: 1px solid #d0d7de;
  border-radius: 6px;
  font-size: 1rem;
  background: #f0f4f8;
}
.contact-form button {
  background: #4a90e2;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form button:hover {
  background: #357ab8;
}
footer {
  text-align: center;
  padding: 2rem 0 1rem 0;
  color: #888;
  font-size: 0.95rem;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-info p {
  margin: 0.3rem 0;
  color: #666;
}

/* Contact section styling */
.contact-info {
  margin-bottom: 2rem;
}

.business-details {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.business-details h3 {
  color: #1B4D3E;
  margin: 0 0 1rem 0;
  font-size: 1.1rem;
}

.business-details p {
  margin: 0.5rem 0;
  color: #333;
  line-height: 1.5;
}

.business-details a {
  color: #4a90e2;
  text-decoration: none;
}

.business-details a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .navbar {
    padding: 1rem;
  }
  .section {
    margin: 2rem 1rem;
    padding: 1.2rem;
  }
}
@media (max-width: 700px) {
  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: #fff;
    flex-direction: column;
    width: 180px;
    gap: 1.2rem;
    padding: 1.5rem 1rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    display: none;
  }
  .nav-links.active {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
}
.review {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #f5f7fa;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.review p {
  margin: 0;
}
.reviewer {
  font-weight: 600;
  color: #4a90e2;
  margin-top: 0.5rem !important;
}

/* About section styling */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-text p {
  line-height: 1.7;
  margin-bottom: 1.2rem;
  color: #333;
}

.about-text ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.about-text li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.about-text strong {
  color: #1B4D3E;
  font-weight: 600;
}

/*
.about-text p:last-child {
  font-weight: 500;
  color: #4a90e2;
  font-style: italic;
  margin-top: 1.5rem;
}
*/

/* Services section styling */
.services-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-intro p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 0;
}

.coaching-process h3,
.coaching-benefits h3,
.coaching-sessions h3 {
  color: #1B4D3E;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.process-step {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #4a90e2;
}

.process-step h4 {
  color: #1B4D3E;
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
}

.process-step p {
  margin: 0;
  line-height: 1.6;
  color: #555;
}

.coaching-benefits ul {
  list-style: none;
  padding: 0;
}

.coaching-benefits li {
  margin-bottom: 1rem;
  padding: 0.8rem;
  background: #e8f4f8;
  border-radius: 6px;
  line-height: 1.6;
}

.coaching-benefits strong {
  color: #1B4D3E;
  font-weight: 600;
}

.session-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.session-type {
  padding: 1.5rem;
  background: #fff;
  border: 2px solid #e0f2e9;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.session-type:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.session-type h4 {
  color: #1B4D3E;
  margin: 0 0 1rem 0;
  font-size: 1.1rem;
}

.session-type p {
  margin: 0 0 1rem 0;
  line-height: 1.6;
  color: #555;
}

.session-type .price {
  font-size: 1.3rem;
  font-weight: 600;
  color: #4a90e2;
  margin: 1rem 0 0 0;
}

.coaching-cta {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #e0f2e9 0%, #f0f8f5 100%);
  border-radius: 12px;
  margin-top: 1rem;
}

.coaching-cta p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.cta-button {
  display: inline-block;
  background: #4a90e2;
  color: #fff;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s;
}

.cta-button:hover {
  background: #357ab8;
}

/* Service areas styling */
.service-areas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.region {
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #1B4D3E;
}

.region h3 {
  margin: 0 0 1rem 0;
  font-size: 1.2rem;
}

.region p {
  margin: 0;
  line-height: 1.6;
  color: #555;
}

/* Responsive design for services */
@media (max-width: 700px) {
  .session-types {
    grid-template-columns: 1fr;
  }
  
  .process-step {
    padding: 0.8rem;
  }
  
  .coaching-cta {
    padding: 1.5rem;
  }
  
  .service-areas {
    grid-template-columns: 1fr;
  }
} 