  /* ===== Pink About Us Banner ===== */
    .about-banner-pink {
      position: relative;
      background: #FB95A0;
      display: flex;              /* flexbox centering */
      justify-content: center;    /* horizontal center */
      align-items: center;        /* vertical center */
      text-align: center;
      color: #000;
      padding: 200px 20px;            /* only side padding */
      overflow: hidden;
    }

    .about-inner-pink {
      max-width: 900px;
      margin: 0 auto;
    }

    .about-banner-pink h1 {
      font-family: 'Alegreya', serif;
      font-size: 3rem;
      margin-bottom: 12px;
      color: #000;
    }

    .about-banner-pink p {
      font-size: 1.2rem;
      opacity: 0.95;
      color: #000;
    }

    /* curved bottom svg */
    .about-banner-pink .curve {
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 100%;
      height: 120px;
    }

    /* responsive */
    @media (max-width: 768px) {
      .about-banner-pink {
        padding: 80px 20px 60px;
      }
      .about-banner-pink h1 {
        font-size: 2.2rem;
      }
      .about-banner-pink p {
        font-size: 1rem;
      }
    }
  
  
  :root {
  --accent: #FB95A0;
  --dark: #222;
  --muted: #666;
  --radius: 12px;
  }

  html, body {
    margin: 0;
    font-family: 'Alegreya', serif;
    color: var(--dark);
    background: #fff;
    line-height: 1.6;
  }

  /* Banner */
  .policy-hero {
    background: linear-gradient(180deg, var(--accent), #e87f8c);
    color: white;
    text-align: center;
    padding: 120px 20px 80px;
  }
  .policy-hero h1 {
    font-size: 2.5rem;
    margin: 0 0 10px;
  }
  .policy-hero p {
    margin: 0;
    font-size: 1.2rem;
  }

  /* Content */
  .policy-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
  }
  .policy-container section {
    margin-bottom: 40px;
  }
  .policy-container h2 {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 12px;
  }
  .policy-container p,
  .policy-container ul {
    color: var(--muted);
    font-size: 1rem;
    margin: 0 0 12px;
  }
  .policy-container ul {
    padding-left: 20px;
  }
  .policy-container li {
    margin-bottom: 8px;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .policy-hero h1 { font-size: 2rem; }
    .policy-hero p { font-size: 1rem; }
    .policy-container h2 { font-size: 1.3rem; }
  }


  /* Floating Cake Menu */
  .floating-cake {
    position: fixed;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Bigger Cake icon — no background */
  .cake-icon {
    font-size: 4rem;   /* increased size */
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  .cake-icon:hover {
    transform: scale(1.2) rotate(-5deg);
  }

  /* Dropdown Menu */
  .cake-menu {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all 0.3s ease;
  }

  /* Show menu on hover */
  .floating-cake:hover .cake-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .cake-menu li {
    border-bottom: 1px solid #f1f1f1;
  }
  .cake-menu li:last-child {
    border-bottom: none;
  }
  .cake-menu a {
    display: block;
    padding: 14px 20px;
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.2s ease;
  }
  .cake-menu a:hover {
    background: #FB95A0;
    color: #fff;
  }

  /* Floating Cake Menu */
  .floating-cake {
    position: fixed;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Bigger Cake icon — animated float */
  .cake-icon {
    font-size: 4rem;
    cursor: pointer;
    animation: floatCake 3s ease-in-out infinite; /* 👈 floating animation */
    transition: transform 0.3s ease;
  }

  /* On hover: pause float and do playful tilt */
  .cake-icon:hover {
    animation-play-state: paused;  /* stop floating while hovering */
    transform: scale(1.2) rotate(-5deg);
  }

  /* Keyframes for parachute-like up/down movement */
  @keyframes floatCake {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }

  /* Container */
  .floating-cake {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Clickable image button */
  .cake-btn {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  /* Cake image — no background/box */
  .cake-img {
    width: 140px;      /* adjust size */
    height: auto;
    display: block;
    border-radius: 0;  /* no rounding */
    box-shadow: none;  /* no shadow/box */
    transition: transform .35s cubic-bezier(.2,.9,.3,1);
    animation: floatCake 3.2s ease-in-out infinite;
  }

  /* Float animation */
  @keyframes floatCake {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
  }

  /* Pause float + hover effect */
  .floating-cake:hover .cake-img,
  .floating-cake.open .cake-img {
    animation-play-state: paused;
    transform: translateY(-6px) scale(1.06) rotate(-2deg);
  }

  /* Dropdown Menu */
  .cake-menu {
    margin-top: 10px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: all .25s ease;
  }

  .floating-cake:hover .cake-menu,
  .floating-cake.open .cake-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .cake-menu ul { list-style: none; margin: 0; padding: 0; }
  .cake-menu li { border-bottom: 1px solid #eee; }
  .cake-menu li:last-child { border-bottom: none; }
  .cake-menu a {
    display: block;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
  }
  .cake-menu a:hover { background: #FB95A0; color: #fff; }

  /* Mobile adjustments */
  @media (max-width: 640px) {
    .cake-img { width: 110px; }
    .cake-menu { min-width: 180px; }
  }



