.policy,
.success {
  padding-block: 130px 60px;
  min-height: 92vh;
}

.success__text {
  margin-bottom: 30px;
}

.policy__title,
.success__title {
  font-weight: 700;
  font-size: 37px;
  line-height: 110%;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 28px;
}

.policy__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0%;
}

.policy__text h2,
.policy__text p,
.policy__text ul {
  margin-bottom: 16px;
}

.policy__text h2 {
  font-size: 20px;
  text-align: left;
}

.policy__text ul {
  padding-left: 20px;
}

.policy__link {
  color: #fff;
}

h1,
h2,
h3,
h4 {
  word-break: break-word;
}

html {
  scroll-behavior: smooth;
}

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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto Flex", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

/* Typography */
h1,
h2,
h3 {
  font-weight: 600;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
  color: #2c3e50;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.4;
}

p {
  margin-bottom: 1rem;
  color: #555;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn--primary {
  background-color: #3b82f6;
  color: white;
}

.btn--primary:hover {
  background-color: #2563eb;
  transform: translateY(-2px);
}

.btn--secondary {
  background-color: white;
  color: #3b82f6;
  border: 2px solid #3b82f6;
}

.btn--secondary:hover {
  background-color: #3b82f6;
  color: white;
}

.btn--full {
  width: 100%;
}

/* Header */
.header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3b82f6;
  text-decoration: none;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav__list a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav__list a:hover {
  color: #3b82f6;
}

/* Mobile Menu */
.burger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 25px;
}

.burger span {
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 3px;
}

.burger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__text h1 {
  color: white;
  margin-bottom: 1rem;
}

.hero__subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #e2e8f0;
}

.hero__description {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #cbd5e0;
}

.hero__image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Onderhoud Section */
.onderhoud {
  padding: 5rem 0;
  background-color: white;
}

.onderhoud__description {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.onderhoud__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.onderhoud__item {
  text-align: center;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.onderhoud__item:hover {
  transform: translateY(-5px);
}

.onderhoud__image {
  margin-bottom: 1.5rem;
}

.onderhoud__image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.onderhoud__footer {
  text-align: center;
  font-style: italic;
  color: #666;
  margin-top: 2rem;
}

/* Seizoenen Section */
.seizoenen {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.seizoenen__description {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.seizoenen__content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.seizoenen__calendar img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.seizoenen__item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.seizoenen__item h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.seizoenen__footer {
  margin-top: 2rem;
  font-style: italic;
  color: #666;
}

/* Expert Advies Section */
.expertadvies {
  padding: 5rem 0;
  background-color: white;
}

.expertadvies__description {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.expertadvies__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.expertadvies__image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.expertadvies__item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  border-left: 4px solid #3b82f6;
  background-color: #f8f9fa;
  border-radius: 0 8px 8px 0;
}

.expertadvies__item h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.expertadvies__footer {
  margin-top: 2rem;
  text-align: center;
  font-style: italic;
  color: #666;
}

/* Beoordelingen Section */
.beoordelingen {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.beoordelingen__description {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.beoordelingen__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.beoordeling {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.beoordeling:hover {
  transform: translateY(-5px);
}

.beoordeling__stars {
  font-size: 1.5rem;
  color: #fbbf24;
  margin-bottom: 1rem;
}

.beoordeling h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.beoordelingen__footer {
  text-align: center;
  font-style: italic;
  color: #666;
  margin-top: 2rem;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background-color: white;
}

.contact__description {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact__form {
  max-width: 600px;
  margin: 0 auto;
}

.form__group {
  margin-bottom: 1.5rem;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: "Roboto Flex", sans-serif;
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: #3b82f6;
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.footer {
  background-color: #2c3e50;
  color: white;
  padding: 2rem 0 1rem;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer__logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3b82f6;
}

.footer__links {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

.footer__links a {
  color: #cbd5e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: white;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social a {
  font-size: 1.5rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.footer__social a:hover {
  transform: scale(1.2);
}

.footer__bottom p {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #4a5568;
  color: #a0aec0;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-popup.show {
  transform: translateY(0);
}

.cookie-popup__content {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-popup h3 {
  margin-bottom: 1rem;
  color: #2c3e50;
}

.cookie-popup p {
  margin-bottom: 1.5rem;
  color: #555;
}

.cookie-popup__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Success Popup */
.success-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 10001;
  transition: transform 0.3s ease;
  text-align: center;
  max-width: 400px;
  width: 90%;
}

.success-popup.show {
  transform: translate(-50%, -50%) scale(1);
}

.success-popup h3 {
  color: #10b981;
  margin-bottom: 1rem;
}

.success-popup p {
  margin-bottom: 2rem;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero__content,
  .seizoenen__content,
  .expertadvies__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .seizoenen__calendar,
  .expertadvies__image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  /* Mobile Navigation */
  .nav {
    position: fixed;
    top: -500px;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: top 0.3s ease;
    z-index: 999;
  }

  .nav.active {
    top: 70px;
  }

  .nav__list {
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
  }

  .nav__list li {
    border-bottom: 1px solid #f0f0f0;
  }

  .nav__list a {
    display: block;
    padding: 1rem 2rem;
  }

  .burger {
    display: flex;
  }

  /* Sections */
  .hero,
  .onderhoud,
  .seizoenen,
  .expertadvies,
  .beoordelingen,
  .contact {
    padding: 3rem 0;
  }

  .onderhoud__grid,
  .beoordelingen__grid {
    grid-template-columns: 1fr;
  }

  .footer__content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .footer__links {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-popup__buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero,
  .onderhoud,
  .seizoenen,
  .expertadvies,
  .beoordelingen,
  .contact {
    padding: 2rem 0;
  }

  .onderhoud__item,
  .beoordeling,
  .seizoenen__item,
  .expertadvies__item {
    padding: 1rem;
  }

  .cookie-popup__content {
    padding: 1.5rem;
  }
}
