   body {
      background: radial-gradient(circle at top, #f0e8e4, #fad4c0);
      color: #1C1917; 
      font-family: "Segoe UI", sans-serif;
      overflow-x: hidden;
      margin: 0;
      min-height: 100vh; 
      display: flex;
      flex-direction: column;
    }

    /* Premium glass card */
    .glass {
      background: rgba(255, 255, 255, 0.25); 
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
      border-radius: 16px;
    }

    .glass-header {
    /* Lower opacity than cards to make it feel airy */
    background: rgba(255, 255, 255, 0.05);
    /* Higher blur to make scrolling text unreadable behind it */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    /* Elegant thin bottom border only */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* Keep it fixed at the top */
    position: sticky; /* or fixed */
    top: 0;
    z-index: 1000;
    /* Spacing */
    padding: 15px 20px;
    width: 150%;
    }
    /* Fade animation */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hover-scale { transition: 0.2s; }
    .hover-scale:hover { transform: scale(1.05); }
    /* Bottom Buttons */
    .action-btn {
      border-radius: 50px;
      padding: 13px 22px;
      font-size: 18px;
      font-weight: 600;
      width: 100%;
      background: linear-gradient(135deg, #ffffff33, #ffffff15);
      border: 1px solid rgba(255,255,255,0.4);
    }
    .action-btn:hover { background: rgba(255,255,255,0.25); }
    /* Desktop 2-column layout */
    @media (min-width: 1024px) {
      .desktop-flex {
        display: flex;
        gap: 30px;
      }
      .left-box {
        flex: 1;
      }
      .right-box {
        flex: 1.2;
      }
    }
      .site-footer {
      margin-top: 30px; /* Pushes footer to bottom */
      padding: 3rem 2rem 1rem;
      border-radius: 24px 24px 0 0; /* Rounded top corners only */
      border-bottom: none; /* No border needed at bottom edge */
      margin-bottom: 0 !important; 
      margin-left: 0;
      margin-right: 0;
      width: 100%;
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-section h3 {
      font-size: 1.2rem;
      margin-bottom: 1.2rem;
      font-weight: 600;
      letter-spacing: 0.5px;
      opacity: 0.9;
    }

    .footer-section p {
      line-height: 1.6;
      opacity: 0.8;
      font-size: 0.95rem;
    }

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

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

    .footer-section a {
      text-decoration: none;
      color: #1C1917;
      opacity: 0.75;
      transition: opacity 0.3s ease;
    }

    .footer-section a:hover {
      opacity: 1;
      text-decoration: underline;
    }

    /* Divider Line */
    .footer-divider {
      height: 1px;
      background: rgba(28, 25, 23, 0.1); /* Subtle dark line */
      margin: 2rem 0 1.5rem;
      border: none;
    }

    .copyright {
      text-align: center;
      font-size: 0.85rem;
      opacity: 0.6;
    }

    /* Optional: Main content spacer for demo purposes */
    .main-content {
      padding: 50px;
      text-align: center;
    }
    .flex-container {
      display: flex;
      flex-wrap: wrap;
    }
