/* Terms of Service Page Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  /* Back to Home Button */
  .back-home-btn {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, #4a3cb7 100%);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(28, 22, 69, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .back-home-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #4a3cb7 0%, var(--accent) 100%);
    transition: width 0.4s ease;
    z-index: -1;
    border-radius: 30px;
  }
  
  .back-home-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(28, 22, 69, 0.4);
  }
  
  .back-home-btn:hover::before {
    width: 100%;
  }
  
  .back-home-btn i {
    margin-right: 0.8rem;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
  }
  
  .back-home-btn:hover i {
    transform: translateX(-3px);
  }
  
  @media (max-width: 768px) {
    .back-home-btn {
      padding: 0.7rem 1.2rem;
      font-size: 0.95rem;
    }
  }
  
  /* Hero Section */
  .terms-hero {
    height: 30vh;
    min-height: 200px;
    background: linear-gradient(rgba(28, 22, 69, 0.8), rgba(28, 22, 69, 0.8)),
      url('https://images.unsplash.com/photo-1589829085413-56de8ae18c73?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1512&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 90px;
    margin-top: 0;
  }
  
  .terms-hero-content {
    max-width: 800px;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
  }
  
  .terms-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }
  
  .terms-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
  }
  
  /* Terms Content */
  .terms-content {
    padding: 5rem 0;
    background: white;
  }
  
  .terms-section {
    margin-bottom: 3rem;
  }
  
  .terms-section h2 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
  }
  
  .terms-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent);
  }
  
  .terms-section p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.2rem;
  }
  
  .terms-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .terms-section li {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.5rem;
  }
  
  .terms-section a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .terms-section a:hover {
    color: var(--accent);
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .terms-hero-content h1 {
      font-size: 3rem;
    }
  }
  
  @media (max-width: 768px) {
    .terms-hero {
      height: 25vh;
    }
    
    .terms-hero-content h1 {
      font-size: 2.5rem;
    }
    
    .terms-hero-content p {
      font-size: 1rem;
    }
    
    .terms-section h2 {
      font-size: 1.6rem;
    }
  }
  
  @media (max-width: 576px) {
    .terms-hero {
      height: 20vh;
    }
    
    .terms-hero-content h1 {
      font-size: 2rem;
    }
    
    .terms-section h2 {
      font-size: 1.4rem;
    }
    
    .terms-section p,
    .terms-section li {
      font-size: 0.95rem;
    }
  }