 /* Simple toast styles */
    .toast-container {
      position: fixed;
      top: 20px;
      right: 20px;
      z-index: 1060;
      display: flex;
      flex-direction: column;
      gap: 10px
    }

    .toast {
      min-width: 220px;
      max-width: 320px;
      padding: 12px 16px;
      border-radius: 6px;
      color: #fff;
      box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
      font-weight: 600
    }

    .toast-success {
      background: #28a745
    }

    .toast-error {
      background: #dc3545
    }

    .toast-info {
      background: #17a2b8
    }

    /* Modal enquiry form styling */
    #enquiryModal .modal-content {
      border-radius: 12px;
      overflow: hidden
    }

    #enquiryModal .modal-header {
      padding: 1.25rem 1.5rem;
      border-bottom: 1px solid #e4e4e4
    }

    #enquiryModal .modal-body {
      padding: 1.5rem
    }

    #enquiryModal .con-page-form {
      padding: 0;
      margin: 0;
      display: block;
    }

    #enquiryModal .con-page-form .mb-3 {
      margin-bottom: 1rem
    }

    #enquiryModal .con-page-form input,
    #enquiryModal .con-page-form textarea {
      width: 100%;
      float: none;
      border: 1px solid #e7e6e6;
      box-shadow: 0 0 4px rgba(0, 0, 0, .08);
      border-radius: 8px;
      padding: 14px 16px;
      height: auto
    }

    #enquiryModal .con-page-form textarea {
      min-height: 140px;
      margin-top: 0
    }

    #enquiryModal .con-page-form .invalid-feedback {
      display: none
    }

    #enquiryModal .con-page-form .captcha-error {
      display: none;
      color: #dc3545;
      margin-top: .35rem
    }
   .modal-title{
    font-weight: 600;
    font-size: 24px ;
   }
    #enquiryModal .con-page-form button {
      width: 100%;
      max-width: 260px;
      margin: 12px auto 0;
      display: block;
      padding: 10px 24px;
    }

    @media (min-width: 768px) {
      #enquiryModal .con-page-form button {
        width: auto
      }
    }