    :root {
      --primary: #ff6b35;
      --primary-dark: #e55a2b;
      --secondary: #e74c3c;
      --success: #27ae60;
      --warning: #f39c12;
      --gray: #7f8c8d;
      --light-bg: #f8f9fa;
      --white: #FFFFFF;
      --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    body {
      font-family: 'Montserrat', sans-serif;
      background: var(--light-bg);
      color: #2c3e50;
      line-height: 1.6;
      overflow-x: hidden;
    }

    .navbar {
      background: rgba(255, 255, 255, 0.98) !important;
      backdrop-filter: blur(20px);
      padding: 1rem 0;
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
      border-bottom: 2px solid var(--primary);
    }

    .navbar-brand {
      font-weight: 800;
      font-size: 1.8rem;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      letter-spacing: -0.5px;
    }

    .nav-link {
      font-weight: 600;
      color: #2c3e50 !important;
      margin: 0 0.5rem;
      padding: 0.5rem 1rem !important;
      border-radius: 8px;
      transition: all 0.3s ease;
    }

    .nav-link:hover {
      color: var(--primary) !important;
      transform: translateY(-2px);
      background: rgba(255, 107, 53, 0.1);
    }

    .terms-hero {
      background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.9) 0%, 
        rgba(229, 90, 43, 0.85) 100%);
      padding: 4rem 0;
      color: white;
      text-align: center;
    }

    .terms-hero h1 {
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 1rem;
    }

    .terms-hero p {
      font-size: 1.2rem;
      opacity: 0.9;
      max-width: 600px;
      margin: 0 auto;
    }

    .terms-content {
      background: white;
      border-radius: 20px;
      box-shadow: var(--shadow);
      margin: -50px auto 3rem;
      padding: 3rem;
      position: relative;
      max-width: 1200px;
    }

    .terms-section {
      margin-bottom: 3rem;
    }

    .terms-section h2 {
      color: var(--primary);
      font-weight: 700;
      margin-bottom: 1.5rem;
      font-size: 1.8rem;
      border-bottom: 3px solid var(--primary);
      padding-bottom: 0.5rem;
    }

    .terms-section h3 {
      color: #2c3e50;
      font-weight: 600;
      margin: 2rem 0 1rem;
      font-size: 1.3rem;
    }

    .terms-section p {
      margin-bottom: 1rem;
      color: #5d6d7e;
    }

    .terms-section ul {
      margin-bottom: 1.5rem;
      padding-left: 1.5rem;
    }

    .terms-section li {
      margin-bottom: 0.5rem;
      color: #5d6d7e;
    }

    .warning-box {
      background: linear-gradient(135deg, #fff3cd, #ffeaa7);
      border-left: 4px solid var(--warning);
      padding: 1.5rem;
      border-radius: 10px;
      margin: 2rem 0;
    }

    .info-box {
      background: linear-gradient(135deg, #d1ecf1, #bee5eb);
      border-left: 4px solid var(--success);
      padding: 1.5rem;
      border-radius: 10px;
      margin: 2rem 0;
    }

    .footer {
      background: linear-gradient(135deg, #2c3e50, #1a252f);
      color: white;
      padding: 3rem 0 1.5rem;
    }

    .footer h5 {
      font-weight: 700;
      margin-bottom: 1rem;
      color: white;
      font-size: 1.1rem;
    }

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

    .footer-links li {
      margin-bottom: 0.5rem;
    }

    .footer-links a {
      color: #bdc3c7;
      text-decoration: none;
      transition: color 0.3s ease;
      font-size: 0.9rem;
    }

    .footer-links a:hover {
      color: white;
    }

    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }

    .social-link {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .social-link:hover {
      background: var(--primary);
      transform: translateY(-2px);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 1.5rem;
      margin-top: 2rem;
      text-align: center;
      color: #95a5a6;
      font-size: 0.9rem;
      background: transparent;
    }

    @media (max-width: 768px) {
      .terms-content {
        margin: -30px 1rem 2rem;
        padding: 2rem 1.5rem;
      }
      
      .terms-hero h1 {
        font-size: 2rem;
      }
      
      .terms-hero p {
        font-size: 1rem;
      }
    }