:root {
  --primary-color: #60BD68;
  --secondary-color: #2ecc71;
  --text-color: #333333;
  --background-color: #f7fbfb;
  --accent-color: #e74c3c;
  --heading-color: #224455;
  --menu-hover-color: #ff6b6b;
  --footer-color: #60BD68;
  --content-padding: 20px;
}

body {
  background: var(--background-color);
  color: var(--text-color);
  font: 12pt 'Anek Bangla', sans-serif;
  line-height: 1.6;
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 1fr 4fr 1fr;
  grid-template-areas: 
      "header header header"
      "leftside main rightside"
      "footer footer footer";
  min-height: 100vh;
  margin: 0;
  width: 100%;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Acme', sans-serif;
  color: var(--heading-color);
  margin-bottom: 0;
}

/* Voeg dit toe aan het einde van uw bestaande grid.css bestand */

h2 {
    font-size: 1.17em; /* Standaard grootte voor h3 */
}
h3 {
	font-size: 1.05em;
}

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

a {
    color: inherit;
    text-decoration: underline;
}

a:hover {
    color: #ff6b6b;
}

/* Header styles */
header { 
  grid-area: header;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  padding-right: 20px;
  width: 100%;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

header img {
  max-width: 200px;
  height: auto;
}

/* Footer styles */
footer {
  grid-area: footer;
  background-color: var(--footer-color);
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  width: 100%;
}

/* Main content area styles */
main { 
  grid-area: main;
  padding: var(--content-padding);
}

.leftside { 
  grid-area: leftside;
  padding: var(--content-padding);
}

.rightside { 
  grid-area: rightside;
  padding: var(--content-padding);
}

/* Vertical menu styles */
.vertical-menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.vertical-menu li {
  margin-bottom: 5px;
}

.vertical-menu a {
  display: block;
  padding: 5px 0;
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.vertical-menu a:hover {
  color: var(--menu-hover-color);
}

/* Horizontal menu styles */
.horizontal-menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.horizontal-menu li {
  margin-right: 20px;
}

.horizontal-menu a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.horizontal-menu a:hover {
  color: var(--menu-hover-color);
}

.vertical-menu .current {
    color: #999;
}
.horizontal-menu .current {
    color: #999;
}

/* Responsive image styles */
img {
  max-width: 100%;
  height: auto;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
  body {
    grid-template-columns: 1fr;
    grid-template-areas: 
        "header"
        "main"
        "rightside"
        "footer";
  }
  
  .leftside { 
    display: none;
  }
  
  header {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
  }
  
  .horizontal-menu {
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }
  
  .horizontal-menu li {
    margin-right: 0;
    margin-bottom: 5px;
  }
  
  header img {
    max-width: 180px;
  }
}

/* Feature blocks - afwisselend links/rechts */
.feature-block {
  display: flex;
  align-items: center;
  padding: 40px 20px;
  gap: 40px;
}

.feature-block:nth-child(even) {
  background-color: rgba(96, 189, 104, 0.08);
}

.feature-left {
  flex-direction: row;
}

.feature-right {
  flex-direction: row-reverse;
}

.feature-content {
  flex: 1 1 50%;
}

.feature-image {
  flex: 1 1 50%;
  max-width: 50%;
}

.feature-content h2 {
  margin-top: 0;
  color: var(--primary-color);
}

.feature-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .feature-block {
    flex-direction: column;
    padding: 20px;
  }
  
  .feature-image {
    max-width: 100%;
  }
}