@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Lora:wght@400;600&display=swap');

:root {
  --teal: #1d9b9b;
  --coral: #e07856;
  --soft-grey: #d9d9d9;
  --muted-gold: #c9a961;
  --white: #ffffff;
  --black: #1a1a1a;
  --light-bg: #f5f5f5;
  --border-radius: 6px;
}

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

html, body {
  font-family: 'Lora', serif;
  color: var(--black);
  background-color: var(--white);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  letter-spacing: -0.5px;
}

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

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

p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

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

a:hover {
  color: var(--coral);
}

header {
  background: var(--white);
  border-bottom: 1px solid var(--soft-grey);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
}

.logo:hover {
  color: var(--coral);
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--black);
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--coral);
}

body {
  padding-top: 80px;
}

main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--soft-grey);
}

section:last-of-type {
  border-bottom: none;
}

.container-fluid {
  padding: 0 2rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: -1rem;
}

.col-md-6, .col-lg-4, .col-lg-3 {
  padding: 1rem;
}

.col-md-6 {
  flex: 0 0 calc(50% - 2rem);
}

.col-lg-4 {
  flex: 0 0 calc(33.333% - 2rem);
}

.col-lg-3 {
  flex: 0 0 calc(25% - 2rem);
}

.card {
  background: var(--light-bg);
  border: none;
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

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

.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--coral);
  color: var(--white);
}

.btn-secondary {
  background: var(--soft-grey);
  color: var(--black);
}

.btn-secondary:hover {
  background: var(--muted-gold);
  color: var(--white);
}

.hero {
  background: linear-gradient(135deg, rgba(29, 155, 155, 0.1) 0%, rgba(224, 120, 86, 0.1) 100%);
  padding: 4rem 0;
  text-align: center;
}

.hero img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
  animation: fadeIn 0.8s ease-in-out;
}

.hero h1 {
  color: var(--teal);
  margin-bottom: 1rem;
}

.hero-text {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.two-column {
  display: flex;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.two-column-left {
  flex: 1;
}

.two-column-right {
  flex: 1;
}

.two-column img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: var(--white);
}

th {
  background: var(--teal);
  color: var(--white);
  padding: 1rem;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

td {
  padding: 1rem;
  border-bottom: 1px solid var(--soft-grey);
}

tr:hover {
  background: var(--light-bg);
}

.accordion {
  margin: 2rem 0;
}

.accordion-item {
  border: 1px solid var(--soft-grey);
  margin-bottom: 1rem;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.accordion-header {
  background: var(--light-bg);
  padding: 1.5rem;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.accordion-header:hover {
  background: var(--soft-grey);
}

.accordion-header.active {
  background: var(--teal);
  color: var(--white);
}

.accordion-content {
  padding: 1.5rem;
  display: none;
}

.accordion-content.active {
  display: block;
}

.icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 0.5rem;
}

.footer {
  background: var(--teal);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
  font-size: 0.95rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section a {
  color: var(--soft-grey);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 2rem;
  text-align: center;
  color: var(--soft-grey);
}

.disclaimer {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--coral);
  margin: 2rem 0;
  font-size: 0.95rem;
}

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

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

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--teal);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--soft-grey);
  border-radius: var(--border-radius);
  font-family: 'Lora', serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(29, 155, 155, 0.1);
}

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

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

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

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

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

.animation-fade {
  animation: fadeIn 0.6s ease-in-out;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--teal);
  color: var(--white);
  padding: 1.5rem;
  z-index: 999;
  display: none;
  font-size: 0.95rem;
}

.cookie-banner.show {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

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

.cookie-banner button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: var(--border-radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-banner .btn-accept {
  background: var(--coral);
  color: var(--white);
}

.cookie-banner .btn-accept:hover {
  background: var(--muted-gold);
}

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

.cookie-banner .btn-decline:hover {
  background: var(--white);
  color: var(--teal);
}

.cookie-banner .btn-learn {
  background: transparent;
  color: var(--white);
  text-decoration: underline;
}

.cookie-banner .btn-learn:hover {
  text-decoration: none;
}

@media (max-width: 768px) {
  header {
    position: relative;
  }

  body {
    padding-top: 0;
  }

  .header-content {
    flex-wrap: wrap;
    padding: 1rem;
  }

  nav {
    width: 100%;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  nav a {
    padding: 0.5rem 0;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .two-column {
    flex-direction: column;
    gap: 1.5rem;
  }

  .col-md-6 {
    flex: 0 0 100%;
  }

  .col-lg-4, .col-lg-3 {
    flex: 0 0 100%;
  }

  section {
    padding: 2rem 0;
  }

  main {
    padding: 0 1rem;
  }

  .container-fluid {
    padding: 0 1rem;
  }

  .footer-content {
    padding: 0 1rem;
  }

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

  .cookie-banner-buttons {
    width: 100%;
  }
}

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

  h2 {
    font-size: 1.2rem;
  }

  p {
    font-size: 0.95rem;
  }

  nav {
    gap: 0;
  }

  .card {
    padding: 1.5rem;
  }

  table {
    font-size: 0.9rem;
  }

  th, td {
    padding: 0.75rem;
  }
}
