      :root {
        --bg-color: #fdfdfb;
        --text-color: #3c3c3c;
        --accent1-pink: #f7c7ce;
        --accent1-pink-darker: #d98b9c;
        --accent2-green: #b9d7a7;
        --cta-highlight: #fcecc9;
        --white: #ffffff;
        --heading-font: "M PLUS Rounded 1c", sans-serif;
        --body-font: "Nunito", sans-serif;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: var(--body-font);
        background-color: var(--bg-color);
        color: var(--text-color);
        margin: 0;
        line-height: 1.7;
        font-size: 18px;
      }

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

      h1,
      h2,
      h3,
      h4,
      .logo {
        font-family: var(--heading-font);
        font-weight: 700;
        line-height: 1.3;
      }

      h1 {
        font-size: 2.8rem;
        color: var(--white);
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
      }

      h2 {
        font-size: 2.2rem;
        text-align: center;
        margin-top: 3rem;
        margin-bottom: 1.5rem;
        color: var(--accent1-pink-darker);
      }

      h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
      }

      h4 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
      }

      a {
        color: var(--accent1-pink-darker);
        font-weight: 700;
        text-decoration: none;
      }

      a:hover {
        text-decoration: underline;
      }

      .site-header {
        padding: 1rem 0;
        background-color: var(--white);
        border-bottom: 3px solid var(--accent2-green);
      }

      .logo {
        font-size: 1.8em;
        color: var(--accent1-pink-darker);
        text-align: center;
      }

      .hero-section {
        position: relative;
        text-align: center;
        color: white;
        margin-bottom: 2rem;
        margin-top: 2rem;
      }

      .hero-image {
        width: 100%;
        height: 400px;
        object-fit: cover;
        display: block;
        border-radius: 15px;
      }

      .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        border-radius: 15px;
      }

      .hero-overlay p {
        font-size: 1.2rem;
        max-width: 600px;
      }

      .page-intro,
      .research-method,
      .affiliate-disclaimer {
        text-align: center;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 3rem;
      }

      .wave-divider {
        color: var(--accent2-green);
        margin-bottom: 2rem;
      }

      .toc {
        background-color: var(--white);
        padding: 1.5rem 2rem;
        border-radius: 15px;
        margin: 3rem auto;
        border: 2px solid var(--accent2-green);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
      }

      .toc h2 {
        margin-top: 0;
        margin-bottom: 1rem;
        text-align: left;
        font-size: 1.8rem;
      }

      .toc ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
      }

      .toc li {
        flex-basis: calc(50% - 0.5rem);
      }

      .toc a {
        display: block;
        padding: 0.5rem;
        border-radius: 8px;
        background-color: #f9f9f9;
        transition: background-color 0.3s ease;
      }

      .toc a:hover {
        background-color: var(--cta-highlight);
        text-decoration: none;
      }

      .products {
        margin-top: 3rem;
      }

      .product-card {
        background-color: var(--white);
        border-radius: 20px;
        padding: 2rem;
        margin-bottom: 3rem;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.07);
        border: 1px solid #eee;
        display: flex;
        flex-direction: column;
      }

      .product-title {
        color: var(--text-color);
      }

      .pros-cons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin: 1.5rem 0;
      }

      .pros-cons ul {
        padding-left: 25px;
        margin: 0;
      }

      .pros-cons ul li {
        margin-bottom: 0.5rem;
      }

      ul.pros {
        list-style-type: "🐾";
      }

      ul.cons {
        list-style-type: "😿";
      }

      .pros-cons h4 {
        border-bottom: 2px solid var(--accent2-green);
        padding-bottom: 0.5rem;
      }

      .cta-buttons {
        margin-top: auto;
        padding-top: 1rem;
        text-align: center;
      }

      .cta-button {
        background-color: var(--cta-highlight);
        color: var(--text-color);
        padding: 15px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        display: inline-block;
        transition: all 0.3s ease;
        font-size: 1.1rem;
        border: 2px solid transparent;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      }

      .cta-button:hover {
        background-color: var(--accent1-pink);
        color: var(--text-color);
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        text-decoration: none;
      }

      .site-footer {
        background-color: var(--accent2-green);
        color: var(--white);
        text-align: center;
        padding: 2rem 0;
        margin-top: 3rem;
      }

      .site-footer a {
        color: var(--white);
        font-weight: bold;
      }

      @media (max-width: 768px) {
        body {
          font-size: 16px;
        }
        h1 {
          font-size: 2.2rem;
        }
        h2 {
          font-size: 1.8rem;
        }
        .hero-image {
          height: 300px;
        }
        .pros-cons {
          grid-template-columns: 1fr;
        }
        .toc ul {
          flex-direction: column;
        }
        .toc li {
          flex-basis: 100%;
        }
        .product-card {
          padding: 1.5rem;
        }
      }

      @media (max-width: 480px) {
        .hero-overlay {
          padding: 1rem;
        }

        h1 {
          font-size: 1.8rem;
        }

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

/* Privacy Page Specific Styles */
.privacy-content {
  background-color: var(--white);
  border-radius: 20px;
  padding: 2rem 0;
  margin: 3rem auto;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.07);
  border: 1px solid #eee;
  max-width: 800px;
}

.privacy-content h2 {
  text-align: left;
  margin-top: 1.5rem;
}

.privacy-content ul {
  list-style-position: inside;
  padding-left: 1rem;
}

/* Cookie Banner */
.cookie-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background: var(--text-color);
  color: var(--white);
  padding: 1rem;
  font-size: 0.9em;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transform: translateY(0);
  transition: transform 0.3s ease-in-out;
}

.cookie-banner.hidden {
  transform: translateY(100%);
}

.cookie-banner a {
  color: var(--white);
  text-decoration: underline;
}

.cookie-dismiss-button {
  background-color: var(--accent1-pink);
  color: var(--text-color);
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-dismiss-button:hover {
  background-color: var(--accent1-pink-darker);
} 