body {
      background-color: #0a0a0a;
      color: #e0e0e0;
      font-family: 'Outfit', sans-serif;
    }

    /* Sidebar Styling */
    .tz-sidebar {
      background-color: #111;
      border-right: 1px solid #333;
      min-height: 100vh;
      padding: 2rem 1.5rem;
    }

    .tz-branch-item {
      margin-bottom: 1.8rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid #2a2a2a;
    }

    .tz-branch-item:last-child {
      border-bottom: none;
    }

    .tz-branch-title {
      font-weight: 600;
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      gap: 10px;
      color: #fff;
    }

    .tz-branch-title i {
      font-size: 1.2rem;
    }

    .tz-branch-address, .tz-branch-contact {
      font-size: 0.95rem;
      color: #aaa;
      margin: 0.5rem 0;
    }

    .tz-branch-contact a {
      color: #91d904;
      text-decoration: none;
    }

    .tz-branch-contact a:hover {
      text-decoration: underline;
    }

    /* Form Styling - Dark */
    .tz-contact-form {
      background-color: #111;
      color: #e0e0e0;
      padding: 2.5rem;
      border: 1px solid #333;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }

    .tz-contact-form h2 {
      color: #fff;
      font-size: 1.8rem;
      margin-bottom: 1rem;
      font-weight: 600;
    }

    .tz-contact-form p {
      color: #999;
      margin-bottom: 2rem;
    }

    .form-label {
      color: #ccc;
      font-size: 0.9rem;
      margin-bottom: 0.5rem;
    }

    .form-control, .form-control:focus, textarea {
      background-color: #1e1e1e;
      border: 1px solid #444;
      color: #fff;
      border-radius: 6px;
      padding: 0.75rem 1rem;
    }

    .form-control::placeholder, textarea::placeholder {
      color: #777;
    }

    .form-control:focus {
      border-color: #91d904;
      box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25);
      outline: none;
    }

    .submit-btn {
      background-color: #91d904;
      color: white;
      border: none;
      padding: 12px 24px;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 6px;
      cursor: pointer;
      width: 100%;
      transition: background 0.3s ease;
      margin-top: 1rem;
    }

    .submit-btn:hover {
      background-color: #0b5ed7;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .tz-sidebar {
        border-right: none;
        border-bottom: 1px solid #333;
        min-height: auto;
      }
    }
    .tz-breadcrumb__content{
        text-align: center;
    }