/* Variabelen voor kleuren en typografie */
:root {
  --color-background: #f7f6ef;
  --color-accent-primary: #b49164; /* Warm brown/gold */
  --color-accent-secondary: #2c7a7b; /* Teal/petrol */
  --color-text-dark: #254151; /* Dark blue/grey for headings */
  --color-text-light: #737373; /* Medium grey for body text */
  --color-white: #ffffff;
  --color-light-gray: #f0f0f0; /* Added for light gray background */
  --font-heading: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  --spacing-xs: 0.5rem; /* Added for smaller spacing */
  --color-primary: #254151; /* Added for primary color */
  --color-accent: #b49164; /* Added for accent color */
  --primary-color: #254151; /* Added for primary color */
  --secondary-color: #b49164; /* Added for accent color */
  --transition: 0.3s ease; /* Added for transition variable */
}

/* Algemene reset en basisstijlen */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--color-text-light);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

/* Skip link voor toegankelijkheid */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background-color: var(--color-accent-secondary);
  color: var(--color-white);
  padding: 8px;
  z-index: 1000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  margin-bottom: var(--spacing-sm);
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 2rem;
}
h4 {
  font-size: 1.5rem;
}

.section-subtitle {
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  font-size: 2rem; /* Consistent with h3 */
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
}

/* Links */
a {
  color: var(--color-accent-secondary);
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease;
}

a:hover,
a:focus {
  color: var(--color-accent-primary);
  outline: none; /* Remove default focus outline */
}

/* Buttons */
.button {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  border: 2px solid transparent;
  font-family: var(--font-body);
  font-size: 1rem;
}

.button-primary {
  background-color: var(--color-accent-primary);
  color: var(--color-white);
  border-color: var(--color-accent-primary);
}

.button-primary:hover,
.button-primary:focus {
  background-color: #a3825a; /* Manually darkened */
  border-color: #a3825a;
  color: var(--color-white);
}

.button-secondary {
  background-color: transparent;
  color: var(--color-accent-primary);
  border-color: var(--color-accent-primary);
}

.button-secondary:hover,
.button-secondary:focus {
  background-color: var(--color-accent-primary);
  color: var(--color-white);
}

.button-light {
  background-color: var(--color-white);
  color: var(--color-text-dark);
  border-color: var(--color-white);
}

.button-light:hover,
.button-light:focus {
  background-color: #e6e6e6; /* Slightly darker white */
  border-color: #e6e6e6;
  color: var(--color-text-dark);
}

/* Header */
.header {
  background-color: var(--color-white);
  padding: 1.5rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Specific styles for the provided logo HTML */
.jw-header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.jw-header-image-container {
  flex-basis: 80px;
  max-width: 80px;
  flex-shrink: 0;
}

.jw-header-image {
  max-height: 80px;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.jw-header-title-container {
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.jw-header-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-text-dark); /* Default color, overridden by inline styles */
}

.main-nav .nav-list {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}

.main-nav .nav-link {
  color: var(--color-text-dark);
  font-weight: 600;
  padding: 0.5rem 0;
  position: relative;
  align-items: center;
}

.main-nav .nav-link:hover,
.main-nav .nav-link:focus {
  color: var(--color-accent-secondary);
}

.main-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent-secondary);
  transition: width 0.3s ease;
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link:focus::after {
  width: 100%;
}

.main-nav .nav-link.button {
  padding: 0.6rem 1.5rem;
  margin-left: 1rem;
}

/* Centered Navigation */
.nav-centered {
  justify-content: center;
  flex: 1;
  margin: 0 2rem;
}

/* Hamburger menu (mobile) */
.hamburger-menu {
  display: none; /* Hidden on desktop */
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
}

.hamburger-icon {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--color-text-dark);
  transition: var(--transition);
  border-radius: 2px;
}

/* Navigation Overlay */
.nav-overlay {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}


.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .hamburger-menu {
    display: flex;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
  }



  .nav-list {
    position: fixed;
    top: 0;
    right: -100%; /* Start from right side instead of left */
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start; /* Align items to start for better mobile layout */
    padding: 80px 30px 30px;
    transition: right 0.3s ease; /* Changed from left to right */
    z-index: 1001;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    opacity: 0; /* Start hidden */
    visibility: hidden; /* Ensure it's not visible when closed */
  }

  .nav-list.active {
    right: 0; /* Slide in from right */
    opacity: 1; /* Make visible when active */
    visibility: visible; /* Make visible when active */
  }

  .nav-list li {
    margin: 0.5rem 0;
    width: 100%;
  }

  .nav-list .nav-link {
    display: block;
    padding: 1rem;
    color: var(--color-text-dark);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
    text-align: left;
  }

  .nav-list .nav-link:hover {
    background-color: var(--color-background);
    color: var(--color-accent-primary);
  }

  .header-cta-button {
    background: var(--primary-color) !important;
    color: white !important;
    border-radius: 8px !important;
    padding: 12px 20px !important;
    text-align: center !important;
    border: none !important;
    margin-top: 10px;
  }

  /* Hide scrollspy navigation on mobile devices */
  .scrollspy-nav {
    display: none !important;
  }

  /* Also hide mobile progress indicator if you don't want any scrollspy on mobile */
  .mobile-progress-indicator {
    display: none !important;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 70vh;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  padding: var(--spacing-lg) 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-slogan {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--color-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
}

/* Improved hero section mobile responsiveness */
@media (max-width: 768px) {
  .hero-section {
    height: 60vh;
    min-height: 400px;
    padding: var(--spacing-md) 0;
  }

  .hero-slogan {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    padding: 0 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0 1rem;
  }

  .hero-actions .button {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

/* General Section Styling */
.section {
  padding: var(--spacing-lg) 0;
  background-color: var(--color-white);
  margin-bottom: 0; /* Removed margin between sections */
}

.section:nth-of-type(even) {
  background-color: var(--color-background);
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  font-size: 2.8rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--color-accent-primary);
  border-radius: 2px;
}

/* Intro Section */
.intro-section .intro-text {
  max-width: 800px;
  margin: 0 auto var(--spacing-lg) auto;
  text-align: center;
  font-size: 1.1rem;
}

.cta-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.cta-box {
  background-color: var(--color-accent-primary);
  color: var(--color-white);
  padding: var(--spacing-md);
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 180px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-box h3 {
  color: var(--color-white);
  margin-bottom: var(--spacing-sm);
  font-size: 1.5rem;
}

.cta-box .button {
  margin-top: 1rem;
}

.who-we-are {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.who-we-are p {
  max-width: 900px;
  margin: 0 auto 1rem auto;
  font-size: 1.1rem;
}

.benefits-grid .section-title {
  margin-bottom: var(--spacing-md);
}

.benefits-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  text-align: center;
}

/* Added media query to force 3 columns on desktop */
@media (min-width: 1024px) {
  .benefits-items {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .benefits-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .benefits-items {
    grid-template-columns: 1fr;
  }
}

.benefit-item {
  background-color: var(--color-white);
  padding: var(--spacing-md);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.benefit-item .benefit-icon {
  width: 64px;
  height: 64px;
  margin-bottom: var(--spacing-sm);
  color: var(--color-accent-secondary); /* Apply color to SVG icons */
}

.benefit-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0;
}

/* Services Section */
.services-section {
  background-color: var(--color-background);
  padding: var(--spacing-xl) 0;
}

.services-section .service-cards {
  display: grid;
  /* Force 3 columns on desktop for ons zorgaanbod */
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

/* New open layout styles for services section */
.service-cards-open {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.service-card-open {
  background-color: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-card-open:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-header {
  background: linear-gradient(135deg, var(--color-accent-secondary) 0%, #005a5f 100%);
  color: var(--color-white);
  padding: var(--spacing-md);
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.service-header .service-icon {
  color: var(--color-white);
  flex-shrink: 0;
}

.service-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  color: var(--color-white);
}

.service-content-open {
  padding: var(--spacing-md);
}

.service-intro {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-accent-secondary);
  margin-bottom: var(--spacing-md);
  padding: var(--spacing-sm);
  background: #f0f8f9;
  border-radius: 8px;
  border-left: 4px solid var(--color-accent-secondary);
}

.service-content-open h4 {
  color: var(--color-accent-secondary);
  font-size: 1.2rem;
  font-weight: 600;
  margin: var(--spacing-md) 0 var(--spacing-sm) 0;
}

.service-content-open ul {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--spacing-md) 0;
}

.service-content-open li {
  padding: var(--spacing-xs) 0;
  padding-left: var(--spacing-md);
  position: relative;
  color: var(--color-text-dark);
  line-height: 1.6;
  margin-bottom: var(--spacing-xs);
}

.service-content-open li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent-primary);
  font-weight: bold;
}

.service-signup-btn {
  display: inline-block;
  background: var(--color-accent-primary);
  color: var(--color-white);
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: var(--spacing-sm);
}

.service-signup-btn:hover {
  background: #a3825a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 206, 80, 0.3);
}

/* Responsive adjustments for service cards */
@media (max-width: 1023px) {
  .services-section .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-section .service-cards {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background-color: var(--color-white);
  padding: var(--spacing-md);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  /* Added padding bottom to make space for fixed button */
  padding-bottom: 80px;
  border: 1px solid #e9ecef;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Better centering for service icons */
.service-card .service-icon {
  color: var(--color-accent-primary);
  margin: 0 auto var(--spacing-sm) auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  font-size: 2.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: var(--spacing-sm);
}

.service-card p {
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
  flex-grow: 1;
}

/* Completely rebuilt service card accordion styles */
.service-actions {
  margin-top: var(--spacing-md);
}

.service-toggle-btn {
  width: 100%;
  background: var(--color-accent-secondary);
  color: var(--color-white);
  border: none;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--spacing-sm);
  transition: all 0.3s ease;
}

.service-toggle-btn:hover {
  background: #005a5f;
  transform: translateY(-2px);
}

.service-toggle-btn .toggle-icon {
  transition: transform 0.3s ease;
  margin-left: 8px;
}

.service-toggle-btn[aria-expanded="true"] .toggle-icon {
  transform: rotate(180deg);
}

.service-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  margin-top: var(--spacing-sm);
}

.service-content.open {
  max-height: 1000px;
  transition: max-height 0.4s ease-in;
}

.service-content-inner {
  background: #f8f9fa;
  padding: var(--spacing-md);
  border-radius: 8px;
  border-left: 4px solid var(--color-accent-secondary);
}

.service-content ul {
  list-style: none;
  padding: 0;
  margin: var(--spacing-sm) 0;
}

.service-content li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.service-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent-secondary);
  font-weight: bold;
}

.service-signup-btn {
  display: inline-block;
  background: var(--color-accent-secondary);
  color: var(--color-white);
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-top: var(--spacing-sm);
  transition: all 0.3s ease;
}

.service-signup-btn:hover {
  background: #005a5f;
  transform: translateY(-2px);
}

/* About Us Section */
.about-us-section {
  background-color: var(--color-background);
}

.about-us-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.about-us-left {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.about-us-right {
  display: flex;
  align-items: flex-start;
}

.about-us-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.about-us-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-us-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
}

.about-us-welcome {
  background-color: var(--color-white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 0.8s ease-out;
}

.about-us-welcome h2 {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-text-dark);
  margin-bottom: var(--spacing-md);
  text-align: left;
}

.about-us-welcome h2::after {
  left: 0;
  transform: translateX(0);
}

.about-us-welcome p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.about-us-block {
  background-color: var(--color-white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 0.8s ease-out;
}

.about-us-block h3 {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-text-dark);
  margin-bottom: var(--spacing-md);
}

.about-us-block p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.about-us-values {
  background-color: var(--color-white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 0.8s ease-out;
}

.about-us-values h3 {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-text-dark);
  margin-bottom: var(--spacing-md);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
}

.value-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background-color: var(--color-background);
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.value-item:hover {
  transform: translateY(-2px);
}

.value-icon {
  color: var(--color-accent-primary);
  flex-shrink: 0;
}

.value-text {
  font-weight: 600;
  color: var(--color-text-dark);
}

/* Fixed about us section mobile layout */
@media (max-width: 768px) {
  .about-us-layout {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .about-us-bottom {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .about-us-welcome,
  .about-us-block,
  .about-us-values {
    padding: var(--spacing-md);
  }

  .about-us-welcome h2,
  .about-us-block h3,
  .about-us-values h3 {
    font-size: 1.5rem;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
  }

  .value-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

/* Workflow Section */
.workflow-section {
  background-color: var(--color-background);
  padding: var(--spacing-xl) 0;
}

.workflow-section .workflow-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: var(--spacing-md);
  max-width: 1000px;
  margin: 0 auto;
}

/* New open layout styles for workflow section */
.workflow-intro {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.workflow-intro p {
  font-size: 1.1rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.workflow-steps-open {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  max-width: 1000px;
  margin: 0 auto;
}

.workflow-step-open {
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  overflow: hidden;
  transition: all 0.3s ease;
}

.workflow-step-open:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.step-header {
  background: linear-gradient(135deg, var(--color-accent-secondary) 0%, #005a5f 100%);
  color: var(--color-white);
  padding: var(--spacing-md);
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.step-header .step-number {
  background-color: var(--color-white);
  color: var(--color-accent-secondary);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.step-header h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
  color: var(--color-white);
}

.workflow-content-open {
  padding: var(--spacing-md);
}

.workflow-content-open ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.workflow-content-open li {
  padding: var(--spacing-xs) 0;
  padding-left: var(--spacing-md);
  position: relative;
  color: var(--color-text-dark);
  line-height: 1.6;
  margin-bottom: var(--spacing-xs);
}

.workflow-content-open li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-accent-secondary);
  font-weight: bold;
}

.extra-info-section {
  margin-top: var(--spacing-md);
  padding: var(--spacing-md);
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid var(--color-accent-primary);
}

.extra-info-section h4 {
  color: var(--color-accent-secondary);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 var(--spacing-sm) 0;
}

.extra-info-section p {
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: var(--spacing-sm);
}

.extra-info-section ul {
  margin-top: var(--spacing-sm);
}

.workflow-step {
  background: var(--color-white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  color: var(--color-text-dark);
}

.workflow-step h3 {
  color: var(--color-text-dark);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.workflow-step .step-number {
  background-color: var(--color-accent-secondary);
  color: var(--color-white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Completely rebuilt workflow accordion styles */
.workflow-toggle-btn {
  background: transparent;
  border: 2px solid var(--color-accent-secondary);
  color: var(--color-accent-secondary);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--spacing-sm);
  transition: all 0.3s ease;
  width: 100%;
}

.workflow-toggle-btn:hover {
  background: var(--color-accent-secondary);
  color: var(--color-white);
}

.workflow-toggle-btn .toggle-icon {
  transition: transform 0.3s ease;
  margin-left: 8px;
}

.workflow-toggle-btn[aria-expanded="true"] {
  background: var(--color-accent-secondary);
  color: var(--color-white);
}

.workflow-toggle-btn[aria-expanded="true"] .toggle-icon {
  transform: rotate(180deg);
}

.workflow-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  margin-top: var(--spacing-sm);
}

.workflow-content.open {
  max-height: 800px;
  transition: max-height 0.4s ease-in;
}

.workflow-content-inner {
  background: #f8f9fa;
  padding: var(--spacing-md);
  border-radius: 8px;
  border-left: 4px solid var(--color-accent-secondary);
}

.workflow-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.workflow-content li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.workflow-content li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-accent-secondary);
  font-weight: bold;
}

.extra-info-section {
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-md);
  border-top: 1px solid #e0e0e0;
}

.extra-info-section h4 {
  color: var(--color-accent-secondary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.extra-info-section p {
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-dark);
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  /* Changed background to match main section background color */
  background: #f5f8fb;
  padding: var(--spacing-xl) 0;
}

.contact-section > .container > p {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--spacing-lg) auto;
  font-size: 1.1rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background-color: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: var(--spacing-lg);
  margin-top: var(--spacing-md);
}

.contact-info {
  padding: var(--spacing-md);
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.contact-form {
  padding: var(--spacing-md);
  background-color: var(--color-white);
  text-align: center; /* Center align form content on mobile */
}

.contact-info h2 {
  color: var(--color-text-dark);
  margin-bottom: var(--spacing-sm);
  font-size: 1.8rem;
  font-weight: 700;
}

.contact-info p {
  color: var(--color-text-light);
  margin-bottom: var(--spacing-lg);
  font-size: 1rem;
  line-height: 1.6;
}

.contact-details {
  margin-bottom: var(--spacing-lg);
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding: 0.75rem;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.detail-item:hover {
  background-color: var(--color-white);
}

.detail-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.detail-item div {
  flex: 1;
}

.detail-item strong {
  display: block;
  color: var(--color-text-dark);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.detail-item p {
  margin: 0;
  color: var(--color-text-light);
  font-size: 0.85rem;
}

.detail-item a {
  color: var(--color-accent-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.detail-item a:hover {
  color: var(--color-accent-secondary);
  text-decoration: underline;
}

.opening-hours {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: var(--spacing-md);
}

.opening-hours h3 {
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.opening-hours p {
  margin: 0.25rem 0;
  color: var(--color-text-light);
  font-size: 0.85rem;
}

.social-media {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 1rem;
  border-radius: 8px;
}

.social-media h3 {
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.social-icons {
  display: flex;
  gap: 0.5rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--color-white);
  border-radius: 50%;
  border: 2px solid var(--color-accent-primary);
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--color-accent-primary);
  transform: translateY(-1px);
}

.social-icons svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent-primary);
  transition: color 0.3s ease;
}

.social-icons a:hover svg {
  color: var(--color-white);
} /* Form wrapper */
.huisstijl-form {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  width: 100%;
  max-width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Form groups */
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

/* Labels */
.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #333;
  text-align: left;
}

/* Inputs, textarea en select */
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #b49164;
  border-radius: 10px;
  font-size: 1rem;
  background-color: #ffffff;
  transition: border 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #b49164;
  box-shadow: 0 0 0 3px rgba(139, 112, 77, 0.2);
}

@media (max-width: 480px) {
  .hero-slogan {
    font-size: 2rem;
  }

  .container {
    padding: 0 1rem;
  }

  .benefit-item {
    padding: 1.5rem;
  }

  .service-header {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
  }

  .service-content-open {
    padding: 1.5rem;
  }

  .workflow-step-open .step-header {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
  }

  .workflow-content-open {
    padding: 1.5rem;
  }

  .professional-form {
    padding: 1.5rem;
  }
}

/* Submit button */
.submit-button {
  background-color: #b49164;
  color: #fff;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  width: 100%;
}

.submit-button:hover {
  background-color: #a27b53;
  transform: translateY(-2px);
}

/* Required asterisk */
.required {
  color: red;
  font-weight: bold;
}

.map-container {
  margin-top: var(--spacing-lg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.map-container h3 {
  color: var(--color-text-dark);
  margin-bottom: var(--spacing-sm);
  font-size: 1.25rem;
  font-weight: 600;
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
}

/* Mobile responsive adjustments for contact form */
@media (max-width: 768px) {
  /* Make contact container stack vertically on mobile */
  .contact-container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: var(--spacing-md);
  }

  .contact-form .form-group label {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .progress-items {
    max-width: 300px;
  }

  .progress-item {
    width: 10px;
    height: 10px;
  }

  .progress-item::before {
    font-size: 0.6rem;
    bottom: -20px;
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--color-accent-primary);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}


.section + .section {
  margin-top: var(--spacing-md);
}

.signup-section.reduced-spacing {
  margin-top: 0;
  padding-top: var(--spacing-md);
}

/* Form validation error styling */
.form-error {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 5px;
  display: block;
}

.form-group.error input,
.form-group.error textarea {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Responsive improvements for accordions */
@media (max-width: 768px) {
  .service-toggle-btn {
    font-size: 0.9rem;
    padding: 10px 14px;
  }

  .workflow-toggle-btn {
    font-size: 0.8rem;
    padding: 6px 10px;
  }

  .service-content-inner,
  .workflow-content-inner {
    padding: var(--spacing-sm);
  }
}

/* Mobile responsiveness for new layouts */
@media (max-width: 768px) {
  .service-header {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-sm);
  }

  .service-header h3 {
    font-size: 1.5rem;
  }

  .step-header {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-sm);
  }

  .step-header h3 {
    font-size: 1.4rem;
  }

  .step-header .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

/* Signup Section */
.signup-section {
  background-color: var(--color-background);
  padding: var(--spacing-lg) 0;
}

.signup-form {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.signup-form .form-group {
  margin-bottom: 1.5rem;
}

.signup-form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--color-text-dark);
  font-size: 0.9rem;
}

.signup-form .form-group input,
.signup-form .form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e2e8f0;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: all 0.3s ease;
  background-color: var(--color-white);
  box-sizing: border-box;
}

.signup-form .form-group input:focus,
.signup-form .form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent-primary);
  box-shadow: 0 0 0 3px rgba(180, 145, 100, 0.1);
}

.signup-form .checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.signup-form .checkbox-group label {
  display: flex;
  align-items: center;
  font-weight: 400;
  cursor: pointer;
}

.signup-form .checkbox-group input[type="checkbox"] {
  width: auto;
  margin-right: 0.5rem;
  margin-bottom: 0;
}

.signup-form .button-primary {
  width: 100%;
  max-width: 200px;
  margin: 2rem auto 0;
  display: block;
  text-align: center;
}

.back-to-home {
  text-align: center;
  margin-top: 2rem;
}

/* Mobile responsive styling for signup form */
@media (max-width: 768px) {
  .signup-form {
    padding: 1.5rem;
    margin: 0 1rem;
  }

  .signup-form .button-primary {
    width: 100%;
    max-width: none;
  }
}

/* Scrollspy navigation styles */
.scrollspy-nav {
  position: fixed;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.scrollspy-nav.visible {
  opacity: 1;
  visibility: visible;
}

.scrollspy-timeline {
  position: relative;
}

.timeline-line {
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--color-accent-primary);
  opacity: 0.3;
}

.timeline-items {
  position: relative;
  z-index: 1;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  width: 24px;
  height: 24px;
  border: 2px solid var(--color-accent-primary);
  border-radius: 50%;
  background-color: var(--color-background);
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-marker:hover,
.timeline-marker:focus {
  transform: scale(1.1);
  box-shadow: 0 0 0 4px rgba(180, 145, 100, 0.2);
  outline: none;
}

.timeline-item.active .timeline-marker {
  background-color: var(--color-accent-primary);
  transform: scale(1.2);
  box-shadow: 0 0 0 4px rgba(180, 145, 100, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 4px rgba(180, 145, 100, 0.3);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(180, 145, 100, 0.1);
  }
  100% {
    box-shadow: 0 0 0 4px rgba(180, 145, 100, 0.3);
  }
}

.timeline-label {
  margin-left: 1rem;
  font-weight: 600;
  color: var(--color-text-dark);
  font-size: 0.9rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.timeline-item:hover .timeline-label,
.timeline-item.active .timeline-label {
  opacity: 1;
  transform: translateX(0);
}

.timeline-item.active .timeline-label {
  color: var(--color-accent-primary);
  font-weight: 700;
}

/* Screen reader only text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Mobile progress indicator styles */
.mobile-progress-indicator {
  display: block;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  z-index: 40;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.progress-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 400px;
  margin: 0 auto;
}

.progress-item {
  width: 12px;
  height: 12px;
  border: 2px solid var(--color-accent-primary);
  border-radius: 50%;
  background-color: var(--color-background);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.progress-item:hover {
  transform: scale(1.2);
}

.progress-item.active {
  background-color: var(--color-accent-primary);
  transform: scale(1.3);
}

.progress-item::before {
  content: attr(aria-label);
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  color: var(--color-text-dark);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.progress-item.active::before {
  opacity: 1;
  color: var(--color-accent-primary);
  font-weight: 600;
}

/* Responsive behavior for scrollspy */
@media (max-width: 1200px) {
  .scrollspy-nav {
    left: 1rem;
  }
}

@media (max-width: 480px) {
  .progress-items {
    max-width: 300px;
  }

  .progress-item {
    width: 10px;
    height: 10px;
  }

  .progress-item::before {
    font-size: 0.6rem;
    bottom: -20px;
  }
}
.close-menu {
  display: none; /* standaard verbergen */
  position: fixed;  /* ipv absolute, zodat hij altijd rechtsboven in de nav hangt */
  top: 20px;
  right: 20px;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--color-text-dark);
  cursor: pointer;
  z-index: 1101; /* boven nav-list */
}

@media (max-width: 768px) {
  .close-menu {
    display: block;
  }
}
/* --- Footer Layout --- */
.footer {
    background-color: #f7f6ef;
    padding-top: 3rem;
    width: 100%;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.03);
}

.footer-container {
    display: grid;
    /* Desktop: 3 kolommen van gelijke breedte */
    grid-template-columns: 1fr 1fr 1fr; 
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 2rem 20px;
    gap: 2rem; /* Ruimte tussen kolommen */
}

/* --- Tekst & Layout Styling --- */
.footer-item {
    display: flex;
    flex-direction: column;
}

.text-area {
    /* Zorgt dat tekst netjes uitlijnt */
    align-items: flex-start;
}

.logo-area {
    /* Zorgt dat logos in het midden van hun kolom staan of links, naar keuze */
    align-items: flex-start; 
    justify-content: flex-end; /* Duwt logo naar beneden als er ruimte over is */
}

/* --- Typografie & Links --- */
.footer h3 {
    color: #254151;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-desc, .contact-details p, .contact-details a {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    text-decoration: none;
}

.contact-details a:hover, .footer-links a:hover {
    color: #00757b;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: #555; text-decoration: none; transition: color 0.3s; }

/* --- Brand Styling --- */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}
.brand-logo { height: 50px; width: auto; }
.brand-name-main { color: #00757b; font-weight: 700; font-size: 1.4rem; }
.brand-name-sub { color: #f4ce50; font-weight: 700; font-size: 1.4rem; }

/* --- Partner Logos Styling --- */
.partner-logo {
    height: 70px; /* Mooie vaste hoogte, niet te klein */
    width: auto;
    max-width: 80%;
    object-fit: contain;
    display: block;
    margin-top: 1rem;
}

/* --- Footer Bottom (Copyright + Border) --- */
.footer-bottom {
    border-top: 1px solid #ccc; /* De gevraagde border */
    padding: 1.5rem 20px;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    background-color: #f7f6ef; /* Zelfde kleur als footer */
    margin-top: 1rem;
}

/* --- RESPONSIVE / MOBIEL --- */

/* Tablet & Mobiel (< 900px) */
@media (max-width: 900px) {
    .footer-container {
        display: flex; /* Switch van Grid naar Flexbox */
        flex-direction: column; /* Alles onder elkaar */
        align-items: center; /* Alles centreren */
        text-align: center;
        gap: 2rem;
    }

    /* Forceer de volgorde op mobiel */
    .text-area { order: 1; width: 100%; align-items: center; }
    .logo-area { order: 2; width: 100%; align-items: center; justify-content: center; }

    /* Specifiek: Zorg dat logos onder elkaar staan met wat ruimte */
    .logo-area {
        margin-bottom: 1rem; /* Ruimte tussen de logos onderling */
    }

    /* Pas logo grootte aan voor mobiel indien nodig */
    .partner-logo {
        height: 80px; /* Iets groter en duidelijker op mobiel */
    }

    .footer-brand { justify-content: center; }
}