:root {
  --theme-primary-color: #1A472A;
  --theme-secondary-color: #2D6A3F;
  --theme-white: #FFFFFF;
  --theme-background-color: #FAFBF7;
  --theme-background-light: #f8f9fa;
  --theme-background-medium: #EEF1EA;
  --theme-text-color: #333333;
  --theme-text-dark: #1a1a1a;
  --theme-text-medium: #666666;
  --theme-text-light: #999999;
  --theme-font-family: Poppins, sans-serif;
  --theme-heading-font-family: Nunito, sans-serif;
}

/* Base CSS */
/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700;800&family=Nunito:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

/* CSS Custom Properties (Variables) - Integrated with Theme Config */
:root {
  /* Theme Colors - These will be overridden by Theme config */
  --white-color: #ffffff;
  --primary-color: var(--theme-primary-color, #1e3d78);
  --secondary-color: var(--theme-secondary-color, #3D405B);
  --background-color: var(--theme-background-color, #F4F1DE);
  --section-bg-color: var(--theme-background-color, #F4F1DE);
  --custom-btn-bg-color: #F2CC8F;
  --custom-btn-bg-hover-color: #E07A5F;
  --dark-color: #000000;
  --p-color: #717275;
  --link-hover-color: #F2CC8F;

  /* Text colors from theme */
  --text-dark: var(--theme-text-dark, #1A1A1A);
  --text-medium: var(--theme-text-medium, #6B6B6B);
  --text-light: var(--theme-text-light, #8A8A8A);

  /* Button and border colors */
  --primary-dark: #1E3D2A;
  --border-color: #e5e5e5;
  --error-color: #dc2626;
  --surface-color: #f9f9f9;
  --phone-frame-color: #1a1a1a;
  --phone-frame-highlight: #2a2a2a;
  --primary-color-light: rgba(45, 90, 61, 0.1);

  /* Typography */
  --body-font-family: 'DM Sans', sans-serif;
  --font-family: var(--body-font-family);
  --heading-font-family: var(--body-font-family);

  /* Font Sizes */
  --h1-font-size: 42px;
  --h2-font-size: 36px;
  --h3-font-size: 28px;
  --h4-font-size: 24px;
  --h5-font-size: 22px;
  --h6-font-size: 20px;
  --p-font-size: 18px;
  --menu-font-size: 16px;
  --btn-font-size: 14px;
  --copyright-font-size: 12px;

  /* Border Radius */
  --border-radius-large: 100px;
  --border-radius-medium: 20px;
  --border-radius-small: 10px;

  /* Font Weights */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;

  /* Text Color */
  --text-color: var(--dark-color);
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-family, sans-serif);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--background-color, #fff);
  color: var(--text-color, #333);
  font-family: var(--body-font-family);
}

/* Typography */
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font-family, var(--font-family, sans-serif));
  font-weight: var(--font-weight-medium);
  letter-spacing: -1px;
  line-height: 1.2;
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  overflow-wrap: break-word;
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--secondary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

/* Global Section Styles */
.section-bg {
  background-color: var(--section-bg-color);
}

.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-overlay {
  content: "";
  background: rgba(0, 0, 0, 0) linear-gradient(rgba(39, 48, 83, 0.01) 0%, rgb(39, 48, 83) 100%) repeat scroll 0% 0%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

::selection {
  background-color: var(--primary-color);
  color: var(--white-color);
}

/* Global Button Styles */
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.custom-border-btn:hover {
  background: var(--custom-btn-bg-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}

.custom-btn-group .link {
  color: var(--white-color);
  font-weight: var(--font-weight-medium);
}

.custom-btn-group .link:hover {
  color: var(--link-hover-color);
}

/* Global Form Styles */
.custom-form .form-control {
  border-radius: var(--border-radius-large);
  border-width: 2px;
  box-shadow: none;
  color: var(--p-color);
  margin-bottom: 20px;
  padding: 10px;
  padding-left: 20px;
  outline: none;
}

.custom-form .form-control:focus,
.custom-form .form-control:hover {
  border-color: var(--dark-color);
}

.form-floating>label {
  padding-left: 20px;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  transition: all 0.3s;
  margin-bottom: 0;
  padding-left: 10px;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}

/* Responsive Typography */
@media screen and (max-width: 991px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 16px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .hero-section {
    position: relative;
    top: 82px;
    margin-bottom: 82px;
  }

  .events-listing-section {
    margin-bottom: 50px;
  }

  .events-detail-section .custom-block-info {
    padding: 40px;
  }

  .events-detail-info {
    padding: 35px 25px;
  }

  .contact-info-item {
    width: 60%;
  }

  .events-detail-section .contact-info-item {
    width: 70%;
  }

  .section-bg-image {
    margin-bottom: 0;
  }

  .section-bg-image-block {
    padding: 30px;
  }

  .site-footer {
    padding-top: 20px;
    padding-bottom: 100px;
  }
}

@media screen and (max-width: 480px) {
  .navbar-brand {
    font-size: var(--p-font-size);
  }

  .navbar-brand-icon {
    width: 30px;
    height: 30px;
  }

  .navbar-brand-icon::after {
    top: 5px;
  }

  .section-bg-image-block {
    padding: 30px;
  }

  .contact-info-item {
    width: 72%;
  }
}

@media screen and (max-width: 360px) {
  .custom-btn {
    font-size: 12px;
    padding: 4px 12px;
  }
}


/* Component CSS: hero */
/* Hero Component Styles */

/* Hero Section */
.hero-section {
  background-image: url('../../../assets/images/anna-rosar-ZxFyVBHMK-c-unsplash.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  height: 100vh;
  min-height: 670px;
  margin-bottom: -90px;
}

.hero-50 {
  height: auto;
  min-height: 540px;
  margin-bottom: -100px;
}

.hero-50 .container + svg {
  transform: rotate(180deg);
}

.hero-section .ratio {
  border-radius: var(--border-radius-medium);
  overflow: hidden;
}

.hero-section svg {
  position: absolute;
  right: 0;
  left: 0;
}

.hero-section > svg {
  top: 0;
}

.hero-section .container + svg {
  top: auto;
  bottom: -1px;
}

.hero-section .row {
  position: relative;
  z-index: 22;
}

/* Animated Headline */
.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}

.cd-words-wrapper b {
  color: var(--link-hover-color);
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
}

.cd-words-wrapper b.is-visible {
  position: relative;
}

.no-js .cd-words-wrapper b {
  opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}

.cd-headline.rotate-1 .cd-words-wrapper {
  -webkit-perspective: 300px;
  -moz-perspective: 300px;
  perspective: 300px;
}

.cd-headline.rotate-1 b {
  opacity: 0;
  -webkit-transform-origin: 50% 100%;
  -moz-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -o-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

.cd-headline.rotate-1 b.is-visible {
  opacity: 1;
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  transform: rotateX(0deg);
  -webkit-animation: cd-rotate-1-in 1.2s;
  -moz-animation: cd-rotate-1-in 1.2s;
  animation: cd-rotate-1-in 1.2s;
}

.cd-headline.rotate-1 b.is-hidden {
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
  -webkit-animation: cd-rotate-1-out 1.2s;
  -moz-animation: cd-rotate-1-out 1.2s;
  animation: cd-rotate-1-out 1.2s;
}

/* Keyframes for Animated Text */
@-webkit-keyframes cd-rotate-1-in {
  0% {
    -webkit-transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    -webkit-transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(360deg);
    opacity: 1;
  }
}

@-moz-keyframes cd-rotate-1-in {
  0% {
    -moz-transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    -moz-transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -moz-transform: rotateX(360deg);
    opacity: 1;
  }
}

@keyframes cd-rotate-1-in {
  0% {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    -webkit-transform: rotateX(120deg);
    -moz-transform: rotateX(120deg);
    -ms-transform: rotateX(120deg);
    -o-transform: rotateX(120deg);
    transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(360deg);
    -moz-transform: rotateX(360deg);
    -ms-transform: rotateX(360deg);
    -o-transform: rotateX(360deg);
    transform: rotateX(360deg);
    opacity: 1;
  }
}

@-webkit-keyframes cd-rotate-1-out {
  0% {
    -webkit-transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    -webkit-transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(180deg);
    opacity: 0;
  }
}

@-moz-keyframes cd-rotate-1-out {
  0% {
    -moz-transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    -moz-transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -moz-transform: rotateX(180deg);
    opacity: 0;
  }
}

@keyframes cd-rotate-1-out {
  0% {
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    -webkit-transform: rotateX(-40deg);
    -moz-transform: rotateX(-40deg);
    -ms-transform: rotateX(-40deg);
    -o-transform: rotateX(-40deg);
    transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    opacity: 0;
  }
}

/* Custom styles for bigger hero title and button */
.hero-section h1 {
  font-size: 4rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}

.hero-section h2 {
  font-size: 2rem !important;
  font-weight: 500 !important;
}

.hero-section .btn.custom-btn {
  font-size: 1.5rem !important;
  padding: 1rem 2.5rem !important;
  font-weight: 600 !important;
}

@media (max-width: 991px) {
  .hero-section h1 {
    font-size: 3rem !important;
  }
  
  .hero-section h2 {
    font-size: 1.5rem !important;
  }
  
  .hero-section .btn.custom-btn {
    font-size: 1.25rem !important;
    padding: 0.875rem 2rem !important;
  }
}

@media (max-width: 767px) {
  .hero-section h1 {
    font-size: 2.5rem !important;
  }
  
  .hero-section h2 {
    font-size: 1.25rem !important;
  }
  
  .hero-section .btn.custom-btn {
    font-size: 1.125rem !important;
    padding: 0.75rem 1.5rem !important;
  }
}
.custom-btn-group .link {
    font-size: 1.2rem;
    vertical-align: middle;
}

/* Hero Placeholder Image */
.hero-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-placeholder-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

/* Component CSS: community */
.community-section-extra-height {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.community-section-extra-height h1 {
    font-size: 6rem;
}

.community-section-extra-height p {
    font-size: 2rem;
}

/* Responsive Community */
@media screen and (max-width: 992px) {
    .community-section-extra-height {
        min-height: 40vh;
    }

    .community-section-extra-height h1 {
        font-size: 3.5rem;
    }

    .community-section-extra-height p {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 576px) {
    .community-section-extra-height {
        min-height: 30vh;
        padding: 40px 20px;
    }

    .community-section-extra-height h1 {
        font-size: 2rem;
    }

    .community-section-extra-height p {
        font-size: 1rem;
    }
}

/* Component CSS: features3 */
/* Features3 - Individual & Company Services Section */
.features3 {
    padding: 100px 0;
    background: var(--white-color);
    position: relative;
    overflow: hidden;
}

.features3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    opacity: 0.5;
}

.features3 .container {
    position: relative;
    z-index: 2;
}

/* Header Section */
.features3-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features3-title {
    font-size: 42px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.features3-subtitle {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features3-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Grid Layout */
.features3-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 60px;
    align-items: start;
}

/* Feature Items */
.feature-item3 {
    background: var(--white-color);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(30, 61, 120, 0.1);
    transition: none;
    position: relative;
    overflow: hidden;
}

.feature-item3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

/* Color differentiation for cards */
.feature-item3:nth-child(1)::before {
    background: var(--secondary-color); /* Orange for particulieren */
}

.feature-item3:nth-child(2)::before {
    background: var(--primary-color); /* Dark blue for bedrijven */
}

.feature-item3:nth-child(1) .feature-item3-title {
    color: var(--secondary-color); /* Orange title for particulieren */
}

.feature-item3:nth-child(2) .feature-item3-title {
    color: var(--primary-color); /* Dark blue title for bedrijven */
}

.feature-item3:nth-child(1) .feature-item3-cta {
    background: var(--secondary-color); /* Orange button for particulieren */
    color: white;
}

.feature-item3:nth-child(2) .feature-item3-cta {
    background: var(--primary-color); /* Dark blue button for bedrijven */
    color: white;
}

.feature-item3:hover {
    /* No hover animations */
}

/* Image Styling */
.feature-item3-image {
    margin-bottom: 30px;
    text-align: center;
}

.feature-item3-image img {
    max-width: 200px;
    height: auto;
    border-radius: 0;
    object-fit: contain;
    transition: none;
    display: block;
    margin: 0 auto;
}

.feature-item3:hover .feature-item3-image img {
    /* No image hover animations */
}

/* Icon Styling */
.feature-item3-icon {
    margin-bottom: 30px;
    text-align: center;
}

.feature-item3-icon .icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white-color);
    margin: 0 auto;
    transition: all 0.3s ease;
}

.feature-item3:hover .feature-item3-icon .icon {
    transform: scale(1.1) rotate(5deg);
}

/* Content Styling */
.feature-item3-content {
    text-align: center;
}

.feature-item3-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.feature-item3-description {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 30px;
}

/* CTA Button */
.feature-item3-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--primary-color);
    color: var(--white-color);
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(30, 61, 120, 0.3);
}

.feature-item3-cta:hover {
    background: #1a3468;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(30, 61, 120, 0.4);
    color: var(--white-color);
}

.feature-item3-cta svg {
    transition: transform 0.3s ease;
}

.feature-item3-cta:hover svg {
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 968px) {
    .features3 {
        padding: 80px 0;
    }
    
    .features3-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features3-header {
        margin-bottom: 60px;
    }
    
    .features3-title {
        font-size: 40px;
    }
    
    .features3-subtitle {
        font-size: 18px;
    }
    
    .feature-item3 {
        padding: 40px 30px;
    }
    
    .feature-item3-title {
        font-size: 24px;
    }
    
    .feature-item3-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .features3 {
        padding: 60px 0;
    }
    
    .features3-header {
        margin-bottom: 50px;
    }
    
    .features3-title {
        font-size: 32px;
    }
    
    .features3-subtitle {
        font-size: 16px;
    }
    
    .feature-item3 {
        padding: 30px 25px;
    }
    
    .feature-item3-image img {
        width: 100px;
        height: 100px;
    }
    
    .feature-item3-icon .icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .feature-item3-title {
        font-size: 22px;
    }
    
    .feature-item3-cta {
        padding: 14px 28px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .features3-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item3 {
        padding: 25px 20px;
    }
    
    .features3-title {
        font-size: 28px;
    }
    
    .feature-item3-title {
        font-size: 20px;
    }
    
    .feature-item3-description {
        font-size: 15px;
    }
}

/* Component CSS: cards4 */
.cards-4 {
    padding: 80px 0;
}

.cards-4 .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.cards-4 .section-header h2 {
    font-size: 42px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cards-4 .section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    margin: 20px auto 0;
    border-radius: 2px;
}

.cards-4 .section-header p {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.cards-4 .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.cards-4 .card {
    background: var(--white-color);
    border-radius: 0;
    padding: 50px 30px 40px;
    text-align: left;
    transition: all 0.3s ease;
    border: none;
    box-shadow: none;
    position: relative;
    border-left: 4px solid transparent;
}

.cards-4 .card:hover {
    transform: translateX(8px);
    border-left-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cards-4 .card .card-number {
    position: absolute;
    top: -10px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cards-4 .card:hover .card-number {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.cards-4 .card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    margin-top: 20px;
    letter-spacing: -0.01em;
}

.cards-4 .card p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cards-4 {
        padding: 60px 0;
    }
    
    .cards-4 .section-header {
        margin-bottom: 40px;
    }
    
    .cards-4 .section-header h2 {
        font-size: 32px;
    }
    
    .cards-4 .section-header p {
        font-size: 16px;
    }
    
    .cards-4 .cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cards-4 .card {
        padding: 40px 20px 30px;
        text-align: center;
    }
    
    .cards-4 .card:hover {
        transform: translateY(-5px);
        border-left-color: transparent;
        border-top: 4px solid var(--primary-color);
    }
    
    .cards-4 .card .card-number {
        left: 50%;
        transform: translateX(-50%);
        top: -15px;
    }
    
    .cards-4 .card:hover .card-number {
        transform: translateX(-50%) scale(1.1);
    }
    
    .cards-4 .card h3 {
        font-size: 22px;
        margin-top: 25px;
    }
    
    .cards-4 .card p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .cards-4 {
        padding: 40px 0;
    }
    
    .cards-4 .section-header h2 {
        font-size: 28px;
    }
    
    .cards-4 .card {
        padding: 35px 15px 25px;
    }
    
    .cards-4 .card .card-number {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* Component CSS: about */
/* About Component Styles */

.about-section {
  padding-bottom: 70px;
}

/* Member Block Styles */
.member-block-image-wrap {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.member-block-image-wrap:hover .member-block-image {
  transform: scale(1.2);
}

.member-block-image-wrap:hover .social-icon {
  opacity: 1;
}

.member-block-image-wrap .social-icon {
  background-color: var(--white-color);
  border-radius: var(--border-radius-large);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.5s;
  padding: 15px 20px;
  width: auto;
}

.member-block-image {
  transition: all 0.3s;
}

.member-block-info {
  padding: 10px;
}

.member-block-info h4,
.member-block-info p {
  margin-bottom: 0;
}

/* Special styling for Lieke's photo - cropped to smaller height */
.member-block-image.lieke-photo {
  object-fit: cover;
  height: 300px;
  width: 100%;
}

.member-block-image-wrap.lieke-photo-container {
  height: 300px;
  overflow: hidden;
}

/* Responsive Team Members */
@media screen and (max-width: 576px) {
  .about-section .member-block-image-wrap {
    max-height: 180px;
    overflow: hidden;
  }

  .about-section .member-block-image {
    object-fit: cover;
    height: 180px;
    width: 100%;
  }

  .about-section .member-block-image-wrap.lieke-photo-container,
  .about-section .member-block-image.lieke-photo {
    height: 200px;
  }

  .about-section .member-block-info h4 {
    font-size: 0.95rem;
  }

  .about-section .member-block-info p {
    font-size: 0.85rem;
  }
}

/* Component CSS: location */
/* Location Component - Vertical Split Layout */
.location-section {
    background: var(--white-color);
    position: relative;
}

/* Split Layout */
.location-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
    background: var(--white-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Left Side - Contact Details */
.contact-side {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.contact-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: var(--p-font-size);
    font-family: var(--body-font-family);
    font-weight: var(--font-weight-medium);
    color: var(--p-color);
    margin-bottom: 8px;
}

.contact-text p {
    font-size: var(--p-font-size);
    font-family: var(--body-font-family);
    font-weight: var(--font-weight-normal);
    color: var(--p-color);
    line-height: 1.5;
    margin: 0;
}

.contact-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--secondary-color);
}

/* Action Buttons */
.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.contact-button.primary {
    background: var(--primary-color);
    color: var(--white-color);
    box-shadow: 0 4px 15px rgba(30, 61, 120, 0.3);
}

.contact-button.primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 61, 120, 0.4);
}

.contact-button.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.contact-button.secondary:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
}

.contact-button svg {
    transition: transform 0.3s ease;
}

.contact-button:hover svg {
    transform: translateX(3px);
}

/* Right Side - Map */
.map-side {
    position: relative;
    background: #e9ecef;
}

.map-container {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.location-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.non-interactive-map {
    pointer-events: none;
}

/* Map Fallback */
.map-fallback {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.fallback-content {
    text-align: center;
    padding: 40px;
}

.fallback-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    margin: 0 auto 24px;
}

.fallback-content h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.fallback-content p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 24px;
}

.fallback-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.fallback-link:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 968px) {
    .location-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .contact-side {
        padding: 50px 40px;
    }

    .map-side {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .contact-side {
        padding: 40px 30px;
    }

    .contact-item {
        padding: 15px 0;
        margin-bottom: 30px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
    }

    .contact-actions {
        gap: 12px;
    }

    .map-side {
        min-height: 350px;
    }
}

@media (max-width: 480px) {
    .contact-side {
        padding: 30px 20px;
    }
    
    .contact-item {
        gap: 15px;
        padding: 12px 0;
        margin-bottom: 25px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-text h3 {
        font-size: 16px;
    }
    
    .contact-text p {
        font-size: 14px;
    }
    
    .contact-button {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .map-side {
        min-height: 300px;
    }
    
    .fallback-content {
        padding: 30px 20px;
    }
    
    .fallback-icon {
        width: 60px;
        height: 60px;
    }
}

/* Component CSS: footer4 */
/* Footer 4 - Compact and well-designed footer */
/* Uses CSS variables from Theme: --primary-color, --text-dark, --text-medium, --text-light, --background-light, --white */
.footer-4 {
    background: var(--background-light);
    color: var(--text-dark);
    padding: 40px 0 20px;
    margin-top: 0;
    width: 100%;
}

.footer-4 .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 30px;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: -0.02em;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-medium);
    margin: 0;
}

/* Links Section */
.footer-links-section {
    display: contents;
}

.footer-column h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

/* Contact Section */
.footer-contact h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.contact-compact {
    margin-bottom: 20px;
}

.contact-compact p {
    font-size: 14px;
    color: var(--text-medium);
    margin: 0 0 8px 0;
    line-height: 1.4;
}


/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--primary-color) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-medium);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid color-mix(in srgb, var(--primary-color) 10%, transparent);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px color-mix(in srgb, var(--primary-color) 30%, transparent);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid color-mix(in srgb, var(--primary-color) 10%, transparent);
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    margin: 0;
    color: var(--text-light);
    font-size: 13px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 968px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-contact {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-4 {
        padding: 30px 0 15px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-links-section {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 8px;
    }
    
    .social-links a {
        width: 32px;
        height: 32px;
    }
}

/* Site Custom CSS */
/* Gildeboer - Custom visual identity
   Differentiates from WOMO: diagonal edge instead of wave,
   darker hero overlay, angular buttons, different section styling */

/* ===== HERO: Replace wave with diagonal edge ===== */
.hero-section > svg {
    display: none !important;
}

.hero-section {
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
    margin-bottom: -60px !important;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--primary-color), transparent 25%) 0%,
        color-mix(in srgb, var(--primary-color), transparent 60%) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    z-index: 1;
}

/* ===== BUTTONS: Angular, not rounded ===== */
.custom-btn {
    border-radius: 4px !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700 !important;
}

.custom-btn-group .link {
    color: var(--white-color) !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 2px;
    text-decoration: none !important;
}

.custom-btn-group .link:hover {
    border-bottom-color: var(--white-color);
}

/* ===== SECTION HEADERS: Accent line instead of plain ===== */
.community-section h1::after,
.features3 h2::after,
.cards4-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 16px auto 0;
}

/* ===== FEATURES: Subtle left border accent ===== */
.features3 .feature-item {
    border-left: 3px solid var(--primary-color);
    border-radius: 0 var(--border-radius-medium) var(--border-radius-medium) 0;
}

/* ===== CARDS: Stronger numbered indicators ===== */
.cards4-section .card-number {
    background: var(--primary-color) !important;
    color: var(--white-color) !important;
    font-weight: 700;
}

/* ===== ABOUT: Cleaner layout ===== */
.about-section .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 16px auto 0;
}

/* ===== CONTACT/LOCATION: Match the angular style ===== */
.location-section .action-btn {
    border-radius: 4px !important;
}

/* ===== FOOTER: Subtle top border ===== */
.site-footer {
    border-top: 3px solid var(--primary-color);
}

/* ===== GENERAL: Slightly different typography feel ===== */
h1, h2, h3 {
    letter-spacing: -0.01em;
}

.community-section h1 {
    font-size: 2.5rem;
}
