/* RESET & NORMALIZE */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  background: #F5F7F6;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #1D1D1D;
  background: linear-gradient(135deg, #B2BEB5 0%, #F5F7F6 100%);
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* TYPOGRAPHY SCALE */
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #004E2E;
  letter-spacing: -0.5px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #004E2E;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #035E39;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: #035E39;
}
p, ul, ol, li, td, th, span, label {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #222;
}
strong {
  font-weight: 700;
}
a {
  color: #004E2E;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFD600;
  text-decoration: none;
}

/* LAYOUT HELPERS & CONTAINERS */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px 0 rgba(0,30,21,0.09);
  margin-bottom: 20px;
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(0, 78, 46, 0.17);
  transform: translateY(-3px) scale(1.02);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 20px;
  border-radius: 20px;
  background: #fffbea;
  box-shadow: 0 4px 16px 0 rgba(0,30,21,0.06);
  margin-bottom: 20px;
  min-width: 0;
  max-width: 480px;
}
.testimonial-card p {
  color: #222;
  font-style: italic;
}
.testimonial-card span {
  font-size: 1rem;
  color: #004E2E;
  font-weight: 700;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FEATURE GRID (INDEX) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div {
  flex: 1 1 220px;
  max-width: 250px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,78,46,.07);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.18s, transform 0.18s;
  margin-bottom: 20px;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 26px 0 rgba(255,214,0,0.13);
  transform: translateY(-2px) scale(1.015);
}
.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
}

/* PRICING TABLE */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0 0 32px 0;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 16px 0 rgba(0,78,46,.06);
}
.pricing-table th, .pricing-table td {
  padding: 16px 14px;
  text-align: left;
  border-bottom: 1px solid #F5F7F6;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.pricing-table thead th {
  background: #F4F6EE;
  color: #004E2E;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.pricing-table tbody tr:last-child td {
  border-bottom: none;
}
.pricing-table tbody tr:hover {
  background: #FFF9CB;
}

/* CALENDAR GRID (AGENDA) */
.calendar-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.calendar-grid > div {
  flex: 1 1 212px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,78,46,0.07);
  padding: 18px 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.17s;
}
.calendar-grid > div:hover {
  box-shadow: 0 7px 24px 0 rgba(0,78,46,0.13);
  transform: translateY(-2px) scale(1.01);
}

/* TRAINING TYPES GRID (GOLFTRAININGEN) */
.training-types-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.training-types-grid > div {
  flex: 1 1 212px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,78,46,0.07);
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
  position: relative;
}
.training-types-grid > div:hover {
  box-shadow: 0 7px 24px 0 rgba(0,78,46,0.15);
  transform: translateY(-2px) scale(1.01);
}
.target-group-tag {
  display: inline-block;
  background: #B2BEB5;
  color: #fff;
  font-size: 0.93rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 12px;
  margin-bottom: 6px;
}

/* FAQ LIST */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-list h3 {
  font-size: 1.15rem;
}
.faq-list p {
  color: #252525;
}

/* MAP */
.map {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 10px;
}
.map img {
  width: 38px;
  height: 38px;
}

/* FOOTER STYLES */
footer {
  background: #004E2E;
  color: #fff;
  padding: 40px 0 30px 0;
  margin-top: 60px;
}
footer .container {
  padding: 0 20px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
}
footer img {
  width: 110px;
  margin-bottom: 9px;
}
footer p {
  color: #fff;
  font-size: 1rem;
}
.footer-navigation {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-navigation a {
  color: #FFD600;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.18s;
}
.footer-navigation a:hover,
.footer-navigation a:focus {
  color: #fff;
}
.social-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
}
.social-links a img {
  width: 32px;
  height: 32px;
  transition: filter 0.15s, transform 0.14s;
  filter: grayscale(0.25) brightness(1);
}
.social-links a:hover img {
  filter: grayscale(0) brightness(1.2);
  transform: scale(1.09) rotate(-5deg);
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: linear-gradient(90deg, #B2BEB5 0%, #fff 100%);
  box-shadow: 0 4px 24px 0 rgba(0,30,21,0.04);
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px;
  position: relative;
}
header img {
  width: 130px;
  height: auto;
}
.main-navigation {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-navigation a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #004E2E;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 5px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border 0.19s;
}
.main-navigation a:hover, .main-navigation a:focus {
  color: #FFD600;
  border-bottom: 2px solid #FFD600;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(90deg, #FFD600 0%, #B2BEB5 84%);
  color: #004E2E;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.09rem;
  padding: 11px 30px;
  border-radius: 26px;
  border: none;
  box-shadow: 0 2px 10px 0 rgba(0,78,46, 0.05);
  cursor: pointer;
  transition: background 0.21s, color 0.14s, box-shadow 0.21s, transform 0.17s;
  text-decoration: none;
  margin-left: 16px;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, #B2BEB5 0%, #FFD600 100%);
  color: #fff;
  box-shadow: 0 4px 15px 0 rgba(0,78,46, 0.09);
  transform: translateY(-2px) scale(1.025);
}


/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #004E2E;
  font-size: 2rem;
  display: none;
  z-index: 210;
  margin-left: 14px;
  cursor: pointer;
  padding: 2px 11px;
  border-radius: 8px;
  transition: background 0.14s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F4F6EE;
  color: #FFD600;
}

/* MOBILE MENU OVERLAY*/
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  z-index: 2222;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.8,0,.36,.99);
  overflow-y: auto;
  padding-top: 18px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #004E2E;
  align-self: flex-end;
  margin: 16px 22px 0 0;
  cursor: pointer;
  transition: color 0.15s, background 0.12s;
  border-radius: 7px;
  padding: 3px 11px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FFD600;
  background: #F2F6F3;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  margin: 48px 36px;
}
.mobile-nav a {
  color: #004E2E;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.17rem;
  text-decoration: none;
  padding: 10px 0;
  width: 100%;
  border-radius: 6px;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFD600;
  color: #fff;
}
/* When menu open, prevent scroll */
body.mobile-menu-open {
  overflow: hidden;
}

@media (max-width: 990px) {
  .main-navigation {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 991px) {
  .mobile-menu {
    display: none !important;
  }
}

/* GENERAL SECTION SPACING */
section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}

/* CARDS */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* HERO SECTIONS */
section:first-of-type {
  background: linear-gradient(90deg, #B2BEB5 0%, #FFD600 100%);
  border-radius: 0 0 32px 32px;
  box-shadow: 0 6px 48px 0 rgba(0,78,46,0.06);
  margin-bottom: 40px;
  padding-top: 54px;
  color: #004E2E;
}
section:first-of-type h1, section:first-of-type h2 {
  color: #004E2E;
  text-shadow: 0 1px 8px rgba(255,214,0,0.07);
}

/* BUTTONS (PRIMARY, SECONDARY, ETC) */
button, .button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 23px;
  outline: none;
  cursor: pointer;
  background: #004E2E;
  color: #fff;
  font-size: 1rem;
  padding: 11px 27px;
  margin-right: 12px;
  margin-bottom: 6px;
  box-shadow: 0 2px 7px 0 rgba(0,78,46, 0.10);
  transition: background 0.15s, color 0.14s, transform 0.13s;
}
button:hover, button:focus, .button:hover, .button:focus {
  background: #FFD600;
  color: #004E2E;
  transform: translateY(-1px) scale(1.04);
}

/* UTILITY CLASSES FOR SPACING */
.mt-8 { margin-top: 8px; }
.mb-8 { margin-bottom: 8px; }
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }

/* TABLE STYLING */
table {
  width: 100%;
  border-collapse: collapse;
}
th, td {
  padding: 12px 9px;
  text-align: left;
}

/* TESTIMONIAL SLIDER (/) */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}

/* TEXT SECTION (generic) */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* SESSION DETAILS */
.session-details p {
  color: #035E39;
  font-weight: 600;
  background: #F4F6EE;
  padding: 9px 14px;
  border-radius: 10px;
}

/* MISC. */
ul {
  padding-left: 24px;
  margin-bottom: 10px;
}
li {
  margin-bottom: 6px;
}
img {
  max-width: 100%;
  height: auto;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1100px) {
  .footer .content-wrapper {
    gap: 26px;
  }
}
@media (max-width: 900px) {
  .feature-grid,
  .training-types-grid,
  .card-container,
  .calendar-grid,
  .testimonial-slider {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 750px) {
  .container {
    padding: 0 10px;
  }
  section {
    padding: 34px 0 34px 0;
  }
  .footer .content-wrapper {
    gap: 18px;
  }
}
@media (max-width: 520px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.45rem; }
  h3, .h3 { font-size: 1.07rem; }
  .cta-button,
  button, .button { font-size: 0.97rem; padding: 7px 12px; }
}

/* SMOOTH MICRO-INTERACTIONS */
.card, .feature-grid > div, .calendar-grid > div, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.18s;
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: #222;
  box-shadow: 0 -2px 20px 0 rgba(0,78,46,.07);
  padding: 22px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  z-index: 5000;
  font-size: 1rem;
  animation: cookieBannerAppear 0.6s cubic-bezier(.55,0,.22,1);
}
@keyframes cookieBannerAppear {
  0% { transform: translateY(100px); opacity:0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-consent-banner button {
  background: #004E2E;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 8px 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin: 0;
  transition: background 0.18s, color 0.15s;
}
.cookie-consent-banner button.accept {
  background: #FFD600;
  color: #004E2E;
}
.cookie-consent-banner button.reject {
  background: #B2BEB5;
  color: #fff;
}
.cookie-consent-banner button.settings {
  background: #F5F7F6;
  color: #004E2E;
  border: 1.5px solid #B2BEB5;
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
  opacity: 0.85;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 6000;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,30,21,0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  width: 96vw;
  max-width: 430px;
  box-shadow: 0 6px 44px 0 rgba(0,78,46,0.17);
  padding: 32px 26px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookieModalAppear 0.53s cubic-bezier(.63,0,.31,1);
}
@keyframes cookieModalAppear {
  0% { transform: translateY(40px) scale(.89); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h3 {
  color: #004E2E;
  font-size: 1.15rem;
  margin-bottom: 15px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 11px;
}
.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #FFD600;
  border-radius: 4px;
  margin-left: 8px;
}
.cookie-category label {
  font-weight: 600;
  font-size: 1rem;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 20px;
  justify-content: flex-end;
}
.cookie-modal button {
  border-radius: 10px;
  padding: 7px 17px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.16s, color 0.13s;
}
.cookie-modal button.save {
  background: #FFD600;
  color: #004E2E;
}
.cookie-modal button.cancel {
  background: #F4F6EE;
  color: #004E2E;
}
.cookie-modal button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #004E2E;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  color: #FFD600;
}

/* Z-INDEX LAYERS */
header { z-index: 100; position: relative; }
.mobile-menu { z-index: 2222; }
.cookie-consent-banner { z-index: 5000; }
.cookie-modal-overlay { z-index: 6000; }

/* ENSURE NO GRID OR COLUMN PROPERTIES USED! */
/* ⬆ As per the requirements, no display: grid, grid-*, columns, etc. are present. */
