    body {
      box-sizing: border-box;
    }
    
    * {
      scroll-behavior: smooth;
    }
    
    .font-heading {
      font-family: 'Playfair Display', serif;
    }
    
    .font-body {
      font-family: 'Inter', sans-serif;
    }
    
    .hero-overlay {
      background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 58, 138, 0.75) 100%);
    }
    
    .gradient-border {
      background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    }
    
    .card-hover {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .card-hover:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    
    .step-connector::after {
      content: '';
      position: absolute;
      top: 50%;
      right: -50%;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, #3b82f6, #93c5fd);
    }
    
    @media (max-width: 768px) {
      .step-connector::after {
        display: none;
      }
    }
    
    .animate-fade-in {
      animation: fadeIn 0.6s ease forwards;
    }
    
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .btn-primary {
      background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
      transition: all 0.3s ease;
    }
    
    .btn-primary:hover {
      background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%);
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    }
    
    .disclaimer-banner {
      background: linear-gradient(90deg, #fef3c7 0%, #fde68a 100%);
    }


    /* Privacy Policy Custom Styles */
.policy-wrapper {
    background-color: #f4f7f9; /* Light neutral background to make the card pop */
    padding: 60px 20px; /* Vertical spacing for top/bottom */
    display: flex;
    justify-content: center;
}

.policy-card {
    background: #ffffff;
    max-width: 900px;
    width: 100%;
    padding: 50px;
    border-radius: 12px;
    /* Soft, professional drop shadow */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.8;
    color: #444;
}

.policy-card h1 {
    color: #1a2b3c;
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-align: center;
}

.effective-date {
    text-align: center;
    color: #888;
    margin-bottom: 40px;
    font-size: 0.95rem;
    display: block;
}

.policy-card h2 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-top: 30px;
    border-bottom: 2px solid #f0f2f5;
    padding-bottom: 8px;
}

.policy-card p, .policy-card li {
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.disclaimer-box {
    background-color: #fff9e6; /* Subtle warning/info yellow */
    border: 1px solid #ffeeba;
    border-left: 5px solid #ffc107;
    padding: 25px;
    margin: 35px 0;
    border-radius: 4px;
}

.disclaimer-box p {
    margin-bottom: 0;
    font-weight: 500;
    color: #856404;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .policy-wrapper {
        padding: 30px 15px;
    }
    .policy-card {
        padding: 25px;
    }
    .policy-card h1 {
        font-size: 1.8rem;
    }
}

.legal-wrapper {
    background-color: #f4f7f9;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.legal-card {
    background: #ffffff;
    max-width: 900px;
    width: 100%;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.8;
    color: #444;
}

.legal-card h1 {
    color: #1a2b3c;
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-align: center;
}

.effective-date {
    text-align: center;
    color: #888;
    margin-bottom: 40px;
    font-size: 0.95rem;
    display: block;
}

.legal-card h2 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-top: 30px;
    border-bottom: 2px solid #f0f2f5;
    padding-bottom: 8px;
}

.disclaimer-highlight {
    background-color: #fff9e6;
    border: 1px solid #ffeeba;
    border-left: 5px solid #ffc107;
    padding: 25px;
    margin: 35px 0;
    border-radius: 4px;
    font-weight: 500;
    color: #856404;
}

@media (max-width: 768px) {
    .legal-wrapper { padding: 30px 15px; }
    .legal-card { padding: 25px; }
    .legal-card h1 { font-size: 1.8rem; }
}