:root {
  --color-soft-grey: #F2F2F2;
  --color-ocean-blue: #0077B6;
  --color-leaf-green: #7CB342;
  --color-soft-yellow: #FFCC80;
  --color-white: #FFFFFF;
  --color-dark-grey: #333333;
  --color-light-grey: #EEEEEE;
}

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

html, body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--color-white);
  color: var(--color-dark-grey);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

h1 {
  font-size: 2.5rem;
  color: var(--color-dark-grey);
}

h2 {
  font-size: 2rem;
  color: var(--color-ocean-blue);
  margin-top: 2rem;
}

h3 {
  font-size: 1.5rem;
  color: var(--color-dark-grey);
  margin-top: 1.5rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

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

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

header {
  position: sticky;
  top: 0;
  background-color: var(--color-white);
  border-bottom: 2px solid var(--color-soft-grey);
  z-index: 1000;
  padding: 1rem 0;
}

.header-container {
  max-width: 95%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-ocean-blue);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
}

.nav-menu a {
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.nav-menu a:hover {
  background-color: var(--color-soft-grey);
  color: var(--color-leaf-green);
}

footer {
  background-color: var(--color-soft-grey);
  color: var(--color-dark-grey);
  padding: 3rem 0 1rem;
  margin-top: 3rem;
  border-top: 2px solid #DDDDDD;
}

.footer-container {
  max-width: 95%;
  margin: 0 auto;
}

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

.footer-section h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--color-ocean-blue);
}

.footer-section p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  font-size: 0.95rem;
}

.footer-disclaimer {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #DDDDDD;
  font-size: 0.9rem;
  color: #666;
}

main {
  max-width: 95%;
  margin: 0 auto;
  padding: 2rem 0;
}

.section {
  padding: 3rem 0;
  margin-bottom: 2rem;
  animation: slideIn 0.6s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-hero {
  background: linear-gradient(135deg, var(--color-soft-grey) 0%, #FAFAFA 100%);
  padding: 4rem 0;
  text-align: center;
  border-radius: 8px;
}

.section-hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.section-hero p {
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 2rem;
}

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

.section-two-column img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background-color: var(--color-white);
  border: 2px solid var(--color-soft-grey);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.card:hover {
  border-color: var(--color-ocean-blue);
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 119, 182, 0.15);
}

.card h3 {
  color: var(--color-ocean-blue);
  margin-top: 0;
}

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

.card ul {
  margin-left: 1.5rem;
  margin-top: 1rem;
}

.card li {
  margin-bottom: 0.7rem;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background-color: var(--color-ocean-blue);
  color: var(--color-white);
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.btn:hover {
  background-color: var(--color-leaf-green);
  transform: scale(1.05);
}

.btn-secondary {
  background-color: var(--color-leaf-green);
  color: var(--color-white);
}

.btn-secondary:hover {
  background-color: var(--color-ocean-blue);
}

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

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

input, textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #CCCCCC;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--color-ocean-blue);
  box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1);
}

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

.disclaimer {
  background-color: var(--color-soft-yellow);
  border-left: 4px solid #FFC107;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.disclaimer strong {
  color: var(--color-dark-grey);
}

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline-item {
  margin-bottom: 2.5rem;
  padding-left: 2.5rem;
  position: relative;
}

.timeline-item:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 12px;
  height: 12px;
  background-color: var(--color-ocean-blue);
  border-radius: 50%;
  border: 3px solid var(--color-white);
  box-shadow: 0 0 0 2px var(--color-ocean-blue);
}

.timeline-item h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.highlight {
  color: var(--color-ocean-blue);
  font-weight: 600;
}

.color-leaf {
  color: var(--color-leaf-green);
}

.color-yellow {
  color: var(--color-soft-yellow);
}

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

.mt-3 {
  margin-top: 3rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-dark-grey);
  color: var(--color-white);
  padding: 1.5rem;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

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

.cookie-message {
  flex: 1;
  min-width: 250px;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: var(--color-ocean-blue);
  color: var(--color-white);
}

.cookie-accept:hover {
  background-color: var(--color-leaf-green);
}

.cookie-reject {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
}

.cookie-reject:hover {
  background-color: var(--color-white);
  color: var(--color-dark-grey);
}

.cookie-policy {
  background-color: transparent;
  color: var(--color-white);
  border: none;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font-size: 0.9rem;
}

.cookie-policy:hover {
  opacity: 0.8;
}

.text-balance {
  text-balance: balance;
}

@media (max-width: 768px) {
  .section-two-column {
    grid-template-columns: 1fr;
  }

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

  .nav-menu {
    gap: 1rem;
    justify-content: center;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .section-hero h1 {
    font-size: 2rem;
  }

  .section-hero p {
    font-size: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

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

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

  main {
    padding: 1rem 0;
  }

  .section {
    padding: 2rem 0;
  }
}

@media (max-width: 480px) {
  html, body {
    font-size: 14px;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .nav-menu {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-menu a {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }

  .section-cards {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .cookie-banner {
    padding: 1rem;
  }
}
