  /* Basic Reset */
  .customization-page {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  /* Hero Section */
  .customization-hero {
      min-height: 100svh;
      background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), 
              url('/Images/General/customization-hero.webp') no-repeat center / cover;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      
      padding: 0 20px;
      color: #fff;
    }

  .customization-hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: rgb(255, 192, 0);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
  }

  .customization-hero p {
      color: #fff;
      font-size: clamp(1rem, 2.5vw, 1.4rem);
      margin-bottom: 25px;
      text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

  .customization-hero button {
      display: inline-block;
      padding: 15px 30px;
      font-size: 1.2rem;
      font-weight: 600;
      background: #000;
      color: rgb(255, 192, 0);
      border-radius: 8px;
      text-decoration: none;
      transition: all 0.3s ease;
      border: 2px solid transparent;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

  .customization-hero button:hover {
      background: rgb(255, 192, 0);
      color: #000;
      border-color: #000;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    
  /* Main Content Styles */
  .customization-container {
      max-width: 1200px;
      margin: -60px auto 60px;
      padding: 40px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
      position: relative;
      z-index: 2;
      
    }

  .customization-container h1 {
      font-size: 2.8rem;
      margin-bottom: 20px;
      color: #000;
      text-align: center;
      font-weight: 700;
    }

  .customization-container h2 {
      font-size: 2.2rem;
      margin: 40px 0 20px;
      text-transform: uppercase;
      border-bottom: 3px solid rgb(255, 192, 0);
      padding-bottom: 15px;
      color: #000;
      font-weight: 700;
      letter-spacing: 1px;
    }

  .customization-container h3 {
      font-size: 1.6rem;
      margin: 25px 0 15px;
      color: rgb(255, 192, 0);
      font-weight: 600;
    }

  .customization-container p {
    margin-bottom: 15px;
    font-size: 1.2em;
    color: #333;
    line-height: 1.6;
  }

  .customization-container strong {
    color: #000;
  }

  .customization-container ul {
    margin-left: 30px;
    list-style-type: square;
    font-size: 1.1em;
    margin-bottom: 20px;
  }

  .customization-container ol {
    padding-left: 30px;
    font-size: 1.1em;
    margin-bottom: 20px;
  }

  .customization-container ol li {
    margin-bottom: 10px;
  }

  /* Factory Notes */
  .factory-note {
    background: #f8f9fa;
    padding: 15px 20px;
    border-left: 4px solid rgb(255, 192, 0);
    margin: 20px 0;
    font-style: italic;
    color: #555;
    border-radius: 0 8px 8px 0;
  }

  /* Link Styles */
  .customization-container a {
    color: rgb(255, 192, 0);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }

  .customization-container a:hover {
    color: rgb(0, 0, 0);
    text-decoration: underline;
  }

  /* Sections */
  .customization-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
  }

  .customization-section:last-child {
    border-bottom: none;
  }

  /* Contact Button */
  .contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    margin: 30px 0;
    background: #000;
    color: #FFD700;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
  }

  .contact-btn:hover {
    background: linear-gradient(135deg, #FFD700, #FFC107);
    color: #000;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    text-decoration: none;
    
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .customization-hero h1 {
      font-size: 2.8rem;
    }

    .customization-hero p {
      font-size: 1.15rem;
      max-width: 90%;
    }

    .customization-container {
      margin: -30px auto 30px;
      padding: 25px;
      border-radius: 10px;
    }

    .customization-container h1 {
      font-size: 2.2rem;
    }

    .customization-container h2 {
      font-size: 1.8rem;
    }

    .customization-container h3 {
      font-size: 1.4rem;
    }

    .customization-container ul {
      margin-left: 20px;
      font-size: 1rem;
    }
  }

  @media (max-width: 480px) {
    .customization-hero {
      min-height: 80svh;
      padding: 0 15px;
    }

    .customization-hero h1 {
      font-size: 2rem;
    }

    .customization-container {
      margin: -20px auto 20px;
      padding: 18px;
    }

    .customization-container h1 {
      font-size: 1.8rem;
    }

    .customization-container h2 {
      font-size: 1.6rem;
    }

    .customization-container ul {
      margin-left: 15px;
      font-size: 0.95rem;
    }

    .contact-btn {
      width: 100%;
      justify-content: center;
    }
  }

  /* Breadcrumb */
  .breadcrumb {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .breadcrumb ol {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
  }

  .breadcrumb li + li::before {
    content: "›";
    padding: 0 8px;
    color: #999;
  }

  .breadcrumb a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: color 0.3s;
  }

  .breadcrumb a:hover {
    color: rgb(255, 192, 0);
  }

  .breadcrumb li[aria-current="page"] {
    font-weight: 700;
    color: rgb(255, 192, 0);
  }













.trust-badges-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 22px;
        margin: 40px auto;
        max-width: 1200px;
        flex-wrap: wrap;
        padding: 0 20px;
      }

      .trust-badges-row img {
        height: 50px;
        max-width: 70px;
        object-fit: contain;
        opacity: 0.85;
        transition: all 0.3s ease;
      }

      .trust-badges-row img:hover {
        opacity: 1;
        transform: translateY(-2px);
      }

      @media (max-width: 480px) {
        .trust-badges-row {
          gap: 16px;
        }
        .trust-badges-row img {
          height: 30px;
        }
      }