body {
            background-color: #000000;
            color: #d1d5db; /* Light Gray */
            font-family: 'Inter', sans-serif;
        }
        .main-content {
            padding-top: 120px; /* Adjust to be below the sticky header */
            padding-bottom: 3rem;
        }
        .content-wrapper {
            max-width: 56rem; /* 896px */
            margin-left: auto;
            margin-right: auto;
            padding: 0 1.5rem;
        }
        .page-intro {
            text-align: center;
            margin-bottom: 3rem;
            margin-top: 100px;
        }
        .page-intro h1 {
            font-size: 2.25rem;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: -0.025em;
        }
        .page-intro p {
            margin-top: 1rem;
            font-size: 1.125rem;
            color: #9ca3af; /* Medium Gray */
        }
        .policy-box {
            background-color: rgba(17, 24, 39, 0.8);
            border: 1px solid #2a2139;
            border-radius: 0.75rem;
            padding: 2rem;
        }
        .policy-box .effective-date {
            font-size: 0.875rem;
            color: #9ca3af;
            font-weight: 600;
        }
        .policy-box h2 {
            font-size: 1.75rem;
            font-weight: 600;
            color: #ffffff;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #374151; /* Gray */
        }
        .policy-box h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #e5e7eb; /* Light Gray */
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        .policy-box ul {
            list-style-position: inside;
            list-style-type: disc;
            padding-left: 1rem;
        }
        .policy-box p, .policy-box ul {
            margin-bottom: 1rem;
            line-height: 1.75;
        }
        .policy-box a {
            color: #818cf8; /* Indigo */
        }
        .policy-box a:hover {
            color: #a78bfa; /* Violet */
        }
        @media (min-width: 768px) {
            .main-content {
                padding-top: 150px;
                padding-bottom: 5rem;
            }
            .page-intro h1 {
                font-size: 3rem;
            }
            .policy-box {
                padding: 3rem;
            }
        }
        
        /* --- Footer --- */
        .site-footer {
            background-color: #111827; /* Darker Blue-Gray */
            border-top: 1px solid #374151;
            margin-top: 3rem;
        }
        
        .footer-content {
             padding: 1.5rem;
             text-align: center;
             color: #9ca3af;
        }

        /* --- Responsive Design --- */
        @media (min-width: 768px) {
            .main-content {
                padding-top: 5rem;
                padding-bottom: 5rem;
            }
            .page-intro h1 {
                font-size: 3rem;
            }
            .policy-box {
                padding: 3rem;
            }
        }
        .footer-container {
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  color: #9ca3af;
  font-size: 14px;
}

@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    padding: 32px 64px;
  }
}

.footer-links {
  display: flex;
  gap: 24px;
  margin-top: 16px;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
}     
 
        .site-footer {
            background-color: #05020c;
            color: #a0a0a0;
            padding: 50px 20px 20px 20px;
            margin-top: auto;
            border-top: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }

      .footer-logo {
        height: 100px;
        margin-bottom: 15px;
      }
      .footer-heading {
            font-size: 24px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 20px;
            font-family: 'Poppins', sans-serif;
            
        }

        .site-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 150%;
            height: 400px;
            background: radial-gradient(circle, rgba(163, 125, 253, 0.1), transparent 70%);
            pointer-events: none;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column .logo-svg {
            height: 40px;
            margin-bottom: 15px;
        }

        .footer-column p {
            font-size: 14px;
            line-height: 1.7;
        }

        .footer-column h3 {
            color: #ffffff;
            font-size: 18px;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #a0a0a0;
            text-decoration: none;
            transition: color 0.3s, padding-left 0.3s;
        }

       

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .newsletter-input {
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            color: #fff;
            padding: 12px;
            border-radius: 8px;
            font-family: inherit;
            transition: border-color 0.3s, box-shadow 0.3s;
            outline: none;
        }

        .newsletter-input:focus {
            border-color: var(--primary-purple);
            box-shadow: 0 0 0 3px rgba(163, 125, 253, 0.3);
        }

        .subscribe-btn {
            background-color: var(--primary-purple);
            color: #fff;
            font-weight: 500;
        }
        
        .footer-bottom {
            border-top: 1px solid var(--border-color);
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            font-size: 14px;
        }

        .footer-socials {
            display: flex;
            gap: 15px;
        }

        .footer-socials a {
            color: #a0a0a0;
            font-size: 18px;
            transition: color 0.3s, transform 0.3s;
        }

        .footer-socials a:hover {
            color: #fff;
            transform: scale(1.2);
        }