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

:root {
  --primary-gray: #E0E0E0;
  --accent-green: #B2DFDB;
  --accent-orange: #FFCCBC;
  --accent-blue: #ADD8E6;
  --text-primary: #333333;
  --text-heading: #000000;
  --white: #FFFFFF;
}

body {
  font-family: 'Roboto', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-primary);
  background-color: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lato', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-heading);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
  letter-spacing: 0.3px;
}

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-green);
}

header {
  position: sticky;
  top: 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--primary-gray);
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.5px;
}

.navbar-brand:hover {
  color: var(--text-heading);
}

.nav-link {
  color: var(--text-primary);
  font-weight: 500;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-green);
}

.hero {
  background-color: var(--primary-gray);
  padding: 100px 0;
  text-align: center;
  display: flex;
  align-items: center;
  min-height: 600px;
}

.hero h1 {
  margin-bottom: 2rem;
  font-size: 3.5rem;
}

.hero-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 2rem auto;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

section {
  padding: 80px 0;
}

section.full-width-bg {
  width: 100%;
  margin-left: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

.section-accent-green {
  background-color: var(--accent-green);
}

.section-accent-orange {
  background-color: var(--accent-orange);
}

.section-accent-blue {
  background-color: var(--accent-blue);
}

.section-white {
  background-color: var(--white);
}

.section-gray {
  background-color: var(--primary-gray);
}

.two-column {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.two-column-left {
  flex: 1;
  min-width: 300px;
}

.two-column-right {
  flex: 1;
  min-width: 300px;
}

.two-column img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  transition: transform 0.3s ease;
}

.two-column img:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 3rem;
}

.card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background-color: var(--accent-green);
  color: var(--text-heading);
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(178, 223, 219, 0.3);
}

.btn:hover {
  background-color: #9ed1cc;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(178, 223, 219, 0.4);
  color: var(--text-heading);
}

.btn-secondary {
  background-color: var(--accent-orange);
  box-shadow: 0 4px 12px rgba(255, 204, 188, 0.3);
}

.btn-secondary:hover {
  background-color: #f0bfaa;
  box-shadow: 0 6px 16px rgba(255, 204, 188, 0.4);
}

.btn-blue {
  background-color: var(--accent-blue);
  box-shadow: 0 4px 12px rgba(173, 216, 230, 0.3);
}

.btn-blue:hover {
  background-color: #9dd3e0;
  box-shadow: 0 6px 16px rgba(173, 216, 230, 0.4);
}

footer {
  background-color: var(--primary-gray);
  padding: 60px 0;
  border-top: 1px solid #d0d0d0;
  margin-top: 80px;
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--text-heading);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-green);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #d0d0d0;
  color: var(--text-primary);
  font-size: 0.9rem;
}

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

.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

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

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-heading);
}

input[type="email"],
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(178, 223, 219, 0.1);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

.disclaimer {
  background-color: var(--primary-gray);
  padding: 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-primary);
  margin: 2rem 0;
  border-left: 4px solid var(--accent-green);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  padding: 2rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  border-top: 1px solid var(--primary-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  min-width: 300px;
  justify-content: flex-end;
}

.cookie-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: var(--accent-green);
  color: var(--text-heading);
}

.cookie-accept:hover {
  background-color: #9ed1cc;
}

.cookie-reject {
  background-color: var(--primary-gray);
  color: var(--text-primary);
}

.cookie-reject:hover {
  background-color: #c8c8c8;
}

.cookie-more {
  background-color: var(--white);
  color: var(--text-primary);
  border: 1px solid var(--primary-gray);
}

.cookie-more:hover {
  background-color: var(--primary-gray);
}

.benefit-list {
  list-style: none;
  margin: 2rem 0;
}

.benefit-list li {
  padding-left: 2rem;
  margin-bottom: 1rem;
  position: relative;
}

.benefit-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: bold;
  font-size: 1.2rem;
}

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

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  .hero {
    padding: 60px 0;
    min-height: auto;
  }

  section {
    padding: 60px 0;
  }

  .two-column {
    gap: 30px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .nav-link {
    margin-left: 0;
    margin-right: 1rem;
  }

  .footer-links {
    gap: 0.5rem;
  }
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .hero {
    padding: 40px 0;
  }

  section {
    padding: 40px 0;
  }

  form {
    padding: 1.5rem;
  }

  .two-column {
    flex-direction: column-reverse;
  }

  .hero-image {
    max-width: 100%;
  }

  .two-column img {
    max-width: 100%;
  }
}
