:root {
  --mint: #9FE2BF;
  --peach: #FFD3B6;
  --slate: #475C7A;
  --parchment: #FAF3E0;
  --white: #FFFFFF;
  --dark: #1A1A1A;
  --light-gray: #F5F5F5;
}

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

html, body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
  background-color: var(--white);
}

body {
  font-size: 18px;
  line-height: 1.72;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

h3 {
  font-size: 1.75rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: var(--slate);
}

p {
  margin-bottom: 1.5rem;
  color: var(--dark);
}

a {
  color: var(--slate);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

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

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--white);
  border-bottom: 1px solid rgba(71, 92, 122, 0.1);
  padding: 1.5rem 2rem;
  transition: background-color 0.3s ease;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--mint);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

nav a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate);
  transition: color 0.18s ease;
}

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

.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-full {
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 120px 0;
}

section:nth-child(even) {
  background-color: var(--parchment);
}

.hero-section {
  padding: 0;
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--mint) 0%, rgba(159, 226, 191, 0.8) 100%);
}

.hero-section img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--white);
  max-width: 800px;
}

.hero-content h1 {
  color: var(--white);
  font-size: 4rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.3rem;
  font-weight: 300;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.section-intro {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section-intro h2 {
  margin-bottom: 1rem;
}

.section-intro p {
  font-size: 1.1rem;
  color: var(--slate);
}

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

.card {
  background: var(--white);
  border: 1px solid rgba(71, 92, 122, 0.15);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(159, 226, 191, 0.2);
  border-color: var(--mint);
}

.card h3 {
  margin-bottom: 1rem;
  color: var(--slate);
}

.card p {
  margin-bottom: 0;
  color: var(--dark);
}

.split-layout {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 4rem;
  align-items: center;
  margin: 3rem 0;
}

.split-layout img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(71, 92, 122, 0.1);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--slate);
  background: var(--parchment);
  transition: all 0.18s ease;
}

.faq-question:hover {
  background: var(--mint);
  color: var(--white);
}

.faq-question.active {
  background: var(--slate);
  color: var(--white);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer.active {
  padding: 1.5rem;
  max-height: 1000px;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--mint);
  color: var(--dark);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(159, 226, 191, 0.3);
}

.btn:hover {
  background-color: var(--slate);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(71, 92, 122, 0.3);
}

.btn-secondary {
  background-color: var(--peach);
  color: var(--dark);
  box-shadow: 0 4px 12px rgba(255, 211, 182, 0.3);
}

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

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

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

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

input[type="email"],
textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(71, 92, 122, 0.2);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.18s ease;
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(159, 226, 191, 0.1);
}

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

footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 4rem 2rem 2rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1220px;
  margin: 0 auto;
}

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

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

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

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

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.18s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.disclaimer {
  background: var(--peach);
  border-left: 4px solid var(--slate);
  padding: 1.5rem;
  border-radius: 6px;
  margin: 2rem 0;
  color: var(--dark);
}

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

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

.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(159, 226, 191, 0.25);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card h3 {
  margin-bottom: 0.75rem;
}

.blog-card p {
  margin-bottom: 1rem;
  color: var(--slate);
  font-size: 0.95rem;
}

.blog-card a {
  color: var(--mint);
  font-weight: 600;
}

.blog-article {
  max-width: 800px;
  margin: 0 auto;
}

.blog-article img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.breadcrumb {
  margin-bottom: 2rem;
  color: var(--slate);
}

.breadcrumb a {
  color: var(--slate);
  margin: 0 0.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 2rem;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-banner.show {
  display: flex;
}

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

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

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

.cookie-banner button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s ease;
}

.cookie-accept {
  background-color: var(--mint);
  color: var(--dark);
}

.cookie-accept:hover {
  background-color: var(--peach);
  transform: translateY(-2px);
}

.cookie-reject {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.cookie-reject:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

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

.cookie-learn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

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

  h2 {
    font-size: 1.75rem;
  }

  .hero-section {
    height: 400px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  section {
    padding: 80px 0;
  }

  nav ul {
    gap: 1.5rem;
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

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

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

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

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  section {
    padding: 60px 0;
  }

  .hero-section {
    height: 300px;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  nav ul {
    gap: 1rem;
    flex-direction: column;
  }

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

.fade-in {
  animation: fadeIn 0.6s ease-in forwards;
  opacity: 0;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.slide-up {
  animation: slideUp 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
