:root {
  --color-mist: #DDE5E9;
  --color-peach: #FFAB91;
  --color-lavender: #C7B8E0;
  --color-mint: #98D4BB;
  --color-dark: #3a3a3a;
}

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

html, body {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  line-height: 1.92;
  color: var(--color-dark);
  background-color: #fafbfc;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
}

h1 {
  font-weight: 700;
  font-size: 4.9rem;
  line-height: 1.1;
  border-radius: 12px;
  color: var(--color-dark);
}

h2 {
  font-weight: 600;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-dark);
}

h3 {
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--color-dark);
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

main {
  flex: 1;
  margin-top: 80px;
}

footer {
  background-color: var(--color-mist);
  padding: 3rem 0;
  margin-top: 4rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar {
  padding: 1rem 0;
}

.nav-link {
  color: var(--color-dark) !important;
  font-weight: 400;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  margin: 0 0.5rem;
}

.nav-link:hover {
  color: var(--color-peach) !important;
}

.brand-logo {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-dark);
  text-decoration: none;
  cursor: pointer;
}

.hero {
  background: linear-gradient(135deg, var(--color-mist) 0%, rgba(255, 171, 145, 0.1) 100%);
  padding: 10vw;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1340px;
  margin: 0 auto;
}

.section {
  padding: 10vw;
  max-width: 1340px;
  margin: 0 auto;
  width: 100%;
}

.section-light {
  background-color: #fafbfc;
}

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

.fade-in-scale {
  animation: fadeInScale 0.6s ease-out forwards;
  opacity: 0;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--color-peach), var(--color-mint));
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 171, 145, 0.3);
  background: linear-gradient(135deg, var(--color-mint), var(--color-peach));
  color: white;
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--color-peach);
  color: var(--color-peach);
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

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

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.accent-peach {
  color: var(--color-peach);
}

.accent-lavender {
  color: var(--color-lavender);
}

.accent-mint {
  color: var(--color-mint);
}

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

.content-grid.reverse {
  direction: rtl;
}

.content-grid.reverse > * {
  direction: ltr;
}

.content-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.1));
}

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

.disclaimer-box {
  background-color: var(--color-mist);
  border-left: 4px solid var(--color-peach);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.8;
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.faq-answer {
  color: #555;
  line-height: 1.8;
}

.form-control {
  border: 1px solid var(--color-mist);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  transition: border-color 0.2s ease;
}

.form-control:focus {
  border-color: var(--color-peach);
  box-shadow: 0 0 0 0.2rem rgba(255, 171, 145, 0.15);
}

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

.footer-section h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.footer-section a {
  display: block;
  color: var(--color-dark);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
  font-size: 0.9rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: #666;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  border-top: 1px solid var(--color-mist);
  padding: 1.5rem 2rem;
  z-index: 999;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  display: none;
}

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

.cookie-content {
  max-width: 1340px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

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

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

.cookie-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cookie-accept {
  background: linear-gradient(135deg, var(--color-peach), var(--color-mint));
  color: white;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 171, 145, 0.3);
}

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

.cookie-reject:hover {
  background-color: var(--color-mist);
}

.cookie-learn {
  background-color: transparent;
  border: none;
  color: var(--color-peach);
  text-decoration: underline;
  padding: 0.5rem 0;
}

.cookie-learn:hover {
  color: var(--color-lavender);
}

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

.blog-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

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

.blog-card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-title {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.blog-card-excerpt {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  flex: 1;
}

.blog-card-link {
  color: var(--color-peach);
  text-decoration: none;
  font-weight: 500;
  margin-top: 1rem;
  display: inline-block;
  transition: color 0.2s ease;
}

.blog-card-link:hover {
  color: var(--color-lavender);
}

.article-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.9;
}

.article-content p {
  margin-bottom: 1.5rem;
  color: #444;
}

.article-content h2 {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.article-meta {
  display: flex;
  gap: 1rem;
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-mist);
}

.thank-you-box {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--color-mist), rgba(199, 184, 224, 0.1));
  border-radius: 12px;
  margin: 2rem 0;
}

.thank-you-box h2 {
  margin-bottom: 1rem;
}

.thank-you-box p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #555;
}

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

  h2 {
    font-size: 1.8rem;
  }

  .section {
    padding: 5vw;
  }

  .hero {
    padding: 5vw;
    min-height: 40vh;
  }

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

  .content-grid.reverse {
    direction: ltr;
  }

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

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

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

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

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

  h2 {
    font-size: 1.4rem;
  }

  .section {
    padding: 3vw;
  }

  .hero {
    padding: 3vw;
    min-height: 30vh;
  }

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

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