/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
  }
  
  a {
    text-decoration: none;
    color: #0066cc;
  }
  
  ul {
    list-style: none;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  /* Header Styles */
  header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .logo img {
    height: 40px;
  }
  
  .search-container {
    flex-grow: 1;
    margin: 0 20px;
  }
  
  .search-bar {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 20px;
    overflow: hidden;
  }
  
  .search-bar input {
    flex-grow: 1;
    padding: 10px 15px;
    border: none;
    outline: none;
  }
  
  .search-bar button {
    background-color: #fff;
    border: none;
    padding: 0 15px;
    cursor: pointer;
  }
  
  .header-actions {
    display: flex;
    align-items: center;
  }
  
  .become-seller {
    margin-right: 20px;
    padding: 8px 15px;
    border: 1px solid #0066cc;
    border-radius: 20px;
    color: #0066cc;
    font-weight: bold;
  }
  
  .icon-buttons {
    display: flex;
  }
  
  .icon-btn {
    background: none;
    border: none;
    font-size: 18px;
    margin-left: 15px;
    color: #666;
    cursor: pointer;
  }
  
  .icon-btn.cart {
    color: var(--gradient-start);
  }
  
  /* Main Navigation */
  .main-nav {
    background-color: var(--gradient-start);
    padding: 10px 0;
  }
  
  /* Breadcrumb */
  .breadcrumb {
    padding: 15px 0;
    font-size: 14px;
    color: #666;
  }
  
  .breadcrumb a {
    color: #666;
    margin-right: 5px;
  }
  
  .breadcrumb span {
    color: #999;
  }
  
  /* Terms Hero Section */

  
  .hero-content h1 {
    font-size: 36px;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .hero-content p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  }
  
  /* Terms Container */
  .terms-container {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
  }
  
  /* Terms Sidebar */
  .terms-sidebar {
    flex: 0 0 280px;
  }
  
  .sidebar-sticky {
    position: sticky;
    top: 100px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
  }
  
  .terms-sidebar h3 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
  }
  
  .terms-nav li {
    margin-bottom: 10px;
  }
  
  .terms-nav a {
    display: block;
    padding: 8px 10px;
    border-radius: 5px;
    color: #333;
    transition: all 0.3s;
  }
  
  .terms-nav a:hover {
    background-color: #f5f5f5;
    color: var(--gradient-start);
  }
  
  .terms-nav a.active {
    background-color: var(--gradient-start);
    color: white;
  }
  
  .sidebar-help {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
  }
  
  .sidebar-help h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .sidebar-help p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
  }
  
  .help-btn {
    display: block;
    background-color: #0066cc;
    color: white;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    transition: background-color 0.3s;
  }
  
  .help-btn:hover {
    background-color: #0055aa;
  }
  
  /* Terms Content */
  .terms-content {
    flex: 1;
  }
  
  .terms-section {
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 30px;
  }
  
  .terms-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
  }
  
  .last-updated {
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
    font-style: italic;
  }
  
  .terms-section h3 {
    font-size: 20px;
    /* margin: 25px 45px 15px; */
    padding-top: 6px;
    color: #333;
  }
  
  .terms-section h4 {
    font-size: 18px;
    margin: 20px 0 10px;
    color: #333;
  }
  
  .terms-section p {
    margin-bottom: 15px;
    line-height: 1.7;
  }
  
  .terms-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
  }
  
  .terms-section ul li {
    list-style-type: disc;
    margin-bottom: 8px;
    line-height: 1.6;
  }
  
  /* Fees Table */
  .fees-table-container {
    overflow-x: auto;
    margin: 20px 0;
  }
  
  .fees-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
  }
  
  .fees-table th,
  .fees-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
  }
  
  .fees-table th {
    background-color: #f5f5f5;
    font-weight: bold;
  }
  
  .fees-table tr:hover {
    background-color: #f9f9f9;
  }
  
  .fee-example {
    background-color: #f9f9f9;
    border-left: 4px solid var(--gradient-start);
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 0 5px 5px 0;
  }
  
  .fee-example h4 {
    margin-top: 0;
  }
  
  .fee-example ul {
    margin-bottom: 10px;
  }
  
  /* Bidding Steps */
  .bidding-steps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
  }
  
  .bid-step {
    background-color: #f9f9f9;
    border-radius: 5px;
    padding: 20px;
    position: relative;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  }
  
  .step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background-color: var(--gradient-start);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
  }
  
  .bid-step h3 {
    margin-top: 5px;
    margin-bottom: 15px;
    margin-left: 45px;
  }
  
  .bidding-tips {
    background-color: #f0f7ff;
    border-left: 4px solid #0066cc;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 5px 5px 0;
  }
  
  .bidding-tips h3 {
    color: #0066cc;
    margin-top: 0;
  }
  
  /* Contact Methods */
  .contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
  }
  
  .contact-method {
    background-color: #f9f9f9;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  }
  
  .contact-method i {
    font-size: 36px;
    color: var(--gradient-start);
    margin-bottom: 15px;
  }
  
  .contact-method h3 {
    margin-bottom: 10px;
  }
  
  .contact-method p {
    margin-bottom: 5px;
    color: #666;
  }
  
  /* Footer */
  footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0 20px;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
  }
  
  .footer-section h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff;
  }
  
  .footer-section ul li {
    margin-bottom: 10px;
  }
  
  .footer-section ul li a {
    color: #ccc;
  }
  
  .footer-section ul li a:hover {
    color: #fff;
  }
  
  .social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .social-icons a {
    color: #ccc;
    font-size: 20px;
  }
  
  .social-icons a:hover {
    color: #fff;
  }
  
  .newsletter p {
    margin-bottom: 10px;
    color: #ccc;
  }
  
  .newsletter-form {
    display: flex;
  }
  
  .newsletter-form input {
    flex-grow: 1;
    padding: 8px;
    border: none;
    border-radius: 3px 0 0 3px;
  }
  
  .newsletter-form button {
    background-color: var(--gradient-start);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
  }
  
  .copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .copyright p {
    color: #ccc;
    font-size: 14px;
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .terms-container {
      flex-direction: column;
    }
    
    .terms-sidebar {
      flex: 0 0 100%;
      margin-bottom: 30px;
    }
    
    .sidebar-sticky {
      position: static;
    }
  }
  
  @media (max-width: 768px) {
    .header-container {
      flex-wrap: wrap;
    }
    
    .logo {
      order: 1;
    }
    
    .header-actions {
      order: 2;
    }
    
    .search-container {
      order: 3;
      width: 100%;
      margin: 15px 0 0;
    }
    
    .terms-hero {
      padding: 40px 20px;
    }
    
    .hero-content h1 {
      font-size: 28px;
    }
    
    .bidding-steps {
      grid-template-columns: 1fr;
    }
    
    .contact-methods {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 576px) {
    .fees-table {
      font-size: 14px;
    }
    
    .fees-table th,
    .fees-table td {
      padding: 8px 10px;
    }
  }