:root {
      --pastel-pink: #fbd6e2;
      --pastel-yellow: #ffeeb8;
      --pastel-blue: #cfe9ff;
      --pastel-mint: #d6f5e5;
      --text-main: #3b3b4d;
      --accent: #f28bb3;
      --bg-gradient: linear-gradient(180deg, #fbd6e2 0%, #ffeeb8 40%, #cfe9ff 100%);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text-main);
      background: var(--bg-gradient);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .page {
      max-width: 1100px;
      margin: 0 auto;
      padding: 1.5rem 1.25rem 2.5rem;
      display: flex;
      flex-direction: column;
      gap: 1.75rem;
    }

    /* Top logo area */
    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-bottom: 0.75rem;
      border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    }

    .logo-placeholder {
      width: 180px;
      height: 60px;
      border-radius: 999px;
      border: 2px dashed rgba(255, 255, 255, 0.9);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      color: rgba(59, 59, 77, 0.7);
      background: rgba(255, 255, 255, 0.5);
    }

    nav a {
      font-size: 0.9rem;
      margin-left: 1rem;
      text-decoration: none;
      color: var(--text-main);
      padding: 0.35rem 0.75rem;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.7);
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
      transition: transform 0.15s ease, box-shadow 0.15s ease;
    }

    nav a:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    }

    /* Hero section */
    .hero {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      gap: 1.75rem;
      align-items: center;
      margin-top: 0.75rem;
    }

    .hero-text h1 {
      font-size: clamp(1.9rem, 3vw, 2.4rem);
      line-height: 1.2;
      margin-bottom: 0.75rem;
      color: #3a3042;
    }

    .hero-text h1 span {
      color: var(--accent);
    }

    .hero-text p {
      font-size: 0.98rem;
      line-height: 1.6;
      margin-bottom: 0.75rem;
    }

    .hero-badge-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin: 0.5rem 0 1rem;
    }

    .badge {
      font-size: 0.78rem;
      padding: 0.3rem 0.7rem;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.85);
      border: 1px solid rgba(255, 255, 255, 0.9);
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      white-space: nowrap;
    }

    .badge-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--accent);
    }

    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-top: 0.5rem;
    }

    .btn-primary,
    .btn-ghost {
      border-radius: 999px;
      padding: 0.55rem 1.2rem;
      font-size: 0.9rem;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    }

    .btn-primary {
      background: var(--accent);
      color: #fff;
      box-shadow: 0 4px 10px rgba(242, 139, 179, 0.5);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 14px rgba(242, 139, 179, 0.6);
    }

    .btn-ghost {
      background: rgba(255, 255, 255, 0.85);
      color: var(--text-main);
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    }

    .btn-ghost:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    }

    .hero-image {
      width: 100%;
      border-radius: 18px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.7);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0.75rem;
    }

    .hero-image-inner {
      width: 70%;
      padding-top: 70%;
      border-radius: 14px;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      /* Replace this with your actual image URL */
      background-image: url("granpamain.png");
    }

    /* Content sections */
    section {
      background: rgba(255, 255, 255, 0.82);
      border-radius: 18px;
      padding: 1.25rem 1.25rem 1.4rem;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    }

    section + section {
      margin-top: 0.75rem;
    }

    section h2 {
      font-size: 1.25rem;
      margin-bottom: 0.6rem;
      color: #3a3042;
    }

    section h3 {
      font-size: 1.05rem;
      margin: 0.75rem 0 0.35rem;
      color: #4a3a5a;
    }

    section p {
      font-size: 0.95rem;
      line-height: 1.7;
      margin-bottom: 0.4rem;
    }

    .pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-top: 0.4rem;
    }

    .pill {
      font-size: 0.8rem;
      padding: 0.25rem 0.7rem;
      border-radius: 999px;
      background: var(--pastel-mint);
      color: #35504a;
      white-space: nowrap;
    }

    .age-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
      gap: 0.75rem;
      margin-top: 0.5rem;
    }

    .age-card {
      border-radius: 14px;
      padding: 0.8rem 0.9rem;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.7));
      border: 1px solid rgba(255, 255, 255, 0.9);
    }

    .age-card h3 {
      margin-top: 0;
      font-size: 0.98rem;
    }

    .age-card p {
      font-size: 0.88rem;
      margin-bottom: 0.25rem;
    }

    .age-tag {
      display: inline-block;
      margin-top: 0.25rem;
      font-size: 0.78rem;
      padding: 0.15rem 0.55rem;
      border-radius: 999px;
      background: rgba(242, 139, 179, 0.12);
      color: #8b3b5c;
    }

    /* Contact section */
    footer {
      margin-top: 1rem;
      padding-top: 0.75rem;
      border-top: 2px solid rgba(255, 255, 255, 0.7);
    }

    .contact {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      font-size: 0.9rem;
    }

    .contact strong {
      font-weight: 600;
    }

    .contact a {
      color: #8b3b5c;
      text-decoration: none;
    }

    .contact a:hover {
      text-decoration: underline;
    }

    .tiny-note {
      font-size: 0.78rem;
      opacity: 0.8;
      margin-top: 0.25rem;
    }

    /* Responsive */
    @media (max-width: 800px) {
      .hero {
        grid-template-columns: 1fr;
      }
      .hero-image {
        order: -1;
      }
      header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
      }
      nav {
        display: flex;
        flex-wrap: wrap;
      }
    }
	.light-green-btn {
    background-color: #d9f7d6; /* soft pastel green */
    color: #1a4d1a; /* deep green text */
    border: 1px solid #b6e8b2;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.light-green-btn:hover {
    background-color: #c8f3c3;
    border-color: #a3e09e;
}