      /* Custom styles */
      .font-playfair { font-family: 'ProximaNovaRegular', sans-serif !important; }
      .font-inter { font-family: 'ProximaNovaRegular', sans-serif !important; }
      
      /* Smooth scrolling */
      html {
        scroll-behavior: smooth;
      }
      
      /* Background effects */
      body {
        position: relative;
        overflow-x: hidden;
      }
      
      body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
          radial-gradient(circle at 20% 20%, rgba(255, 149, 0, 0.08) 0%, transparent 50%),
          radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
          radial-gradient(circle at 40% 60%, rgba(139, 69, 19, 0.05) 0%, transparent 50%);
        pointer-events: none;
        z-index: -1;
      }

      /* Luxury card styling */
      .luxury-card {
        background: linear-gradient(145deg, 
          rgba(30, 30, 30, 0.95) 0%,
          rgba(20, 20, 20, 0.98) 50%,
          rgba(25, 25, 25, 0.95) 100%
        );
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        box-shadow: 
          0 25px 50px rgba(0, 0, 0, 0.5),
          inset 0 1px 0 rgba(255, 255, 255, 0.1);
        position: relative;
        overflow: hidden;
      }

      .luxury-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 149, 0, 0.1), transparent);
        transition: left 1.5s ease-in-out;
      }

      .luxury-card:hover::before {
        left: 100%;
      }

      /* Terms section styling */
      .terms-section {
        background: linear-gradient(135deg, 
          rgba(40, 40, 40, 0.7) 0%,
          rgba(35, 35, 35, 0.8) 50%,
          rgba(30, 30, 30, 0.7) 100%
        );
        border: 1px solid rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
      }

      .terms-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, transparent, #ff9500, transparent);
        transition: left 0.8s ease-in-out;
      }

      .terms-section:hover::before {
        left: 100%;
      }

      .terms-section:hover {
        transform: translateY(-5px);
        box-shadow: 
          0 20px 40px rgba(0, 0, 0, 0.4),
          0 0 30px rgba(255, 149, 0, 0.15);
        border-color: rgba(255, 149, 0, 0.3);
        background: linear-gradient(135deg, 
          rgba(45, 45, 45, 0.85) 0%,
          rgba(40, 40, 40, 0.9) 50%,
          rgba(35, 35, 35, 0.85) 100%
        );
      }

      /* Gradient text */
      .gradient-text {
        background: linear-gradient(135deg, #ff9500, #ff6b35, #8B4513);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: gradient-shift 4s ease-in-out infinite alternate;
      }

      @keyframes gradient-shift {
        0% { filter: hue-rotate(0deg) brightness(1); }
        100% { filter: hue-rotate(15deg) brightness(1.1); }
      }

      /* Floating icons */
      .floating-icon {
        position: absolute;
        animation: float-complex 12s ease-in-out infinite;
        opacity: 0.12;
        transition: all 0.3s ease;
        z-index: 1;
      }

      .floating-icon:hover {
        opacity: 0.8;
        transform: scale(1.3);
        filter: drop-shadow(0 0 20px currentColor);
      }

      @keyframes float-complex {
        0%, 100% { 
          transform: translateY(0px) rotate(0deg); 
          opacity: 0.08;
        }
        25% { 
          transform: translateY(-35px) rotate(8deg); 
          opacity: 0.15;
        }
        50% { 
          transform: translateY(-20px) rotate(-5deg); 
          opacity: 0.12;
        }
        75% { 
          transform: translateY(-30px) rotate(5deg); 
          opacity: 0.18;
        }
      }

      /* Hero particles */
      .hero-particles {
        position: absolute;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 1;
      }

      .particle {
        position: absolute;
        background: rgba(255, 149, 0, 0.4);
        border-radius: 50%;
        animation: particle-float 25s linear infinite;
        pointer-events: none;
      }

      @keyframes particle-float {
        0% {
          transform: translateY(100vh) rotate(0deg);
          opacity: 0;
        }
        10% {
          opacity: 1;
        }
        90% {
          opacity: 1;
        }
        100% {
          transform: translateY(-100px) rotate(360deg);
          opacity: 0;
        }
      }

      /* Animation classes */
      .fade-in-up {
        animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        opacity: 0;
        transform: translateY(40px);
      }

      @keyframes fadeInUp {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .slide-in-left {
        animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        opacity: 0;
        transform: translateX(-50px);
      }

      @keyframes slideInLeft {
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }

      .slide-in-right {
        animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        opacity: 0;
        transform: translateX(50px);
      }

      @keyframes slideInRight {
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }

      .scale-in {
        animation: scaleIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        opacity: 0;
        transform: scale(0.8);
      }

      @keyframes scaleIn {
        to {
          opacity: 1;
          transform: scale(1);
        }
      }

      .rotate-in {
        animation: rotateIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        opacity: 0;
        transform: rotate(-180deg) scale(0.5);
      }

      @keyframes rotateIn {
        to {
          opacity: 1;
          transform: rotate(0deg) scale(1);
        }
      }

      /* Stagger delays */
      .stagger-1 { animation-delay: 0.1s; }
      .stagger-2 { animation-delay: 0.2s; }
      .stagger-3 { animation-delay: 0.3s; }
      .stagger-4 { animation-delay: 0.4s; }
      .stagger-5 { animation-delay: 0.5s; }
      .stagger-6 { animation-delay: 0.6s; }
      .stagger-7 { animation-delay: 0.7s; }
      .stagger-8 { animation-delay: 0.8s; }

      /* Icon animations */
      .icon-bounce {
        animation: iconBounce 3s ease-in-out infinite;
      }

      @keyframes iconBounce {
        0%, 20%, 50%, 80%, 100% {
          transform: translateY(0);
        }
        40% {
          transform: translateY(-8px);
        }
        60% {
          transform: translateY(-4px);
        }
      }

      .icon-pulse {
        animation: iconPulse 2.5s ease-in-out infinite;
      }

      @keyframes iconPulse {
        0% {
          transform: scale(1);
          box-shadow: 0 0 0 0 rgba(255, 149, 0, 0.7);
        }
        70% {
          transform: scale(1.05);
          box-shadow: 0 0 0 15px rgba(255, 149, 0, 0);
        }
        100% {
          transform: scale(1);
          box-shadow: 0 0 0 0 rgba(255, 149, 0, 0);
        }
      }

      .icon-glow {
        position: relative;
        overflow: visible;
      }

      .icon-glow::before {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        background: linear-gradient(45deg, #ff9500, #ff6b35, #8B4513, #ff9500);
        border-radius: inherit;
        z-index: -1;
        filter: blur(10px);
        opacity: 0;
        animation: glowPulse 4s ease-in-out infinite;
      }

      @keyframes glowPulse {
        0%, 100% { opacity: 0; }
        50% { opacity: 0.6; }
      }

      /* Interactive elements */
      .interactive-element {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
      }

      .interactive-element:hover {
        transform: translateY(-2px);
        color: #ff9500;
      }

      /* Card hover effects */
      .card-hover-effect {
        position: relative;
        transition: all 0.3s ease;
      }

      .card-hover-effect::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, transparent 30%, rgba(255, 149, 0, 0.08) 50%, transparent 70%);
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
        border-radius: inherit;
      }

      .card-hover-effect:hover::after {
        opacity: 1;
      }

      /* Scroll progress */
      .scroll-progress {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: rgba(255, 255, 255, 0.1);
        z-index: 1000;
      }

      .scroll-progress-bar {
        height: 100%;
        background: linear-gradient(90deg, #ff9500, #ff6b35);
        width: 0%;
        transition: width 0.1s ease;
      }

      /* Feature item styling */
      .feature-item {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        padding: 1.5rem;
        transition: all 0.3s ease;
      }

      .feature-item:hover {
        background: rgba(255, 149, 0, 0.05);
        border-color: rgba(255, 149, 0, 0.2);
        transform: translateY(-2px);
      }

      /* Contact card styling */
      .contact-card {
        background: linear-gradient(135deg, rgba(255, 149, 0, 0.1) 0%, rgba(40, 40, 40, 0.8) 100%);
        border: 1px solid rgba(255, 149, 0, 0.2);
        transition: all 0.3s ease;
      }

      .contact-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(255, 149, 0, 0.2);
      }

      /* Terms numbering */
      .terms-number {
        background: linear-gradient(135deg, #ff9500, #ff6b35);
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        color: black;
        font-size: 1.25rem;
        margin-right: 1rem;
        flex-shrink: 0;
      }

      /* Warning and important boxes */
      .warning-box {
        background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(185, 28, 28, 0.1) 100%);
        border: 1px solid rgba(239, 68, 68, 0.3);
        border-left: 4px solid #ef4444;
      }

      .info-box {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
        border: 1px solid rgba(59, 130, 246, 0.3);
        border-left: 4px solid #3b82f6;
      }

      .success-box {
        background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(21, 128, 61, 0.1) 100%);
        border: 1px solid rgba(34, 197, 94, 0.3);
        border-left: 4px solid #22c55e;
      }

      /* Responsive design */
      @media (max-width: 1024px) {
        .floating-icon {
          font-size: 2rem !important;
        }
      }

      @media (max-width: 768px) {
        .floating-icon {
          display: none;
        }
        
        .terms-section {
          margin-bottom: 1rem;
        }
        
        .terms-section:hover {
          transform: translateY(-2px);
        }
        
        .luxury-card {
          padding: 1.5rem;
          margin: 0 1rem;
        }
        
        .hero-particles {
          display: none;
        }

        .terms-number {
          width: 40px;
          height: 40px;
          font-size: 1rem;
        }
      }

      @media (max-width: 640px) {
        .luxury-card {
          padding: 1rem;
          border-radius: 1rem;
        }
        
        .terms-section {
          padding: 1rem;
        }
        
        .feature-item {
          padding: 1rem;
        }

        .terms-number {
          width: 36px;
          height: 36px;
          font-size: 0.875rem;
        }
      }