.brg-contact-wrapper-box {
      padding: 40px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .brg-contact-info-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      margin-bottom: 40px;
    }

    .brg-contact-info-item {
      flex: 1 1 22%;
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin: 10px 0;
    }

    .brg-contact-info-item i {
      font-size: 24px;
      color: #999;
    }

    .brg-contact-info-text p {
      margin: 0;
      font-size: 14px;
      color: #333;
    }

    .brg-contact-info-text strong {
      display: block;
      font-size: 15px;
      margin-bottom: 5px;
      color: #111;
    }

    .brg-contact-divider {
      border-top: 1px solid #ccc;
      margin: 30px 0;
    }

    .brg-contact-form-title {
      font-size: 22px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .brg-contact-form-subtitle {
      font-size: 14px;
      margin-bottom: 30px;
      color: #666;
    }

    form.brg-contact-form-box {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .brg-contact-form-box input,
    .brg-contact-form-box textarea {
      padding: 12px 15px;
      border: 1px solid #e0e0e0;
      background: #f8f8f8;
      border-radius: 3px;
      font-size: 14px;
      resize: none;
    }

    .brg-contact-form-box input:focus,
    .brg-contact-form-box textarea:focus {
      outline: none;
      border-color: #999;
    }

    .brg-contact-form-box textarea {
      height: 120px;
    }

    .brg-contact-btn-row {
      display: flex;
      justify-content: space-between;
      gap: 15px;
      margin-top: 10px;
    }

    .brg-contact-submit-btn {
      flex: 1;
      padding: 12px;
      background: #A42A2B; /* dark blue */
      color: white;
      border: none;
      cursor: pointer;
      font-weight: bold;
    }

    .brg-contact-reset-btn {
      flex: 1;
      padding: 12px;
      background: #8a97a0; /* gray */
      color: white;
      border: none;
      cursor: pointer;
      font-weight: bold;
    }

    @media (max-width: 768px) {
      .brg-contact-info-row {
        flex-direction: column;
      }

      .brg-contact-info-item {
        flex: 1 1 100%;
      }

      .brg-contact-btn-row {
        flex-direction: column;
      }
    }
    .brg-contact-heading-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  color: #111;
  font-weight: bold;
}