
    .contact-wrapper {
      padding: 40px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .contact-info h2 {
      font-size: 25px;
      font-weight: 600;
      color: #c0202c;
      margin-bottom: 20px;
    }

    .feedback-form h2 {
       font-size: 25px;
      font-weight: 600;
      color: #c0202c;
      margin-bottom: 20px;
    }
    .contact-info {
      margin-bottom: 40px;
    }

    .branch-cards {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .branch-card {
      background-color: #f9f9f9;
      padding: 20px;
      border-left: 4px solid #c0202c;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      border-radius: 6px;
    }

    .branch-card h3 {
      margin-top: 0;
      color: #c0202c;
    }

    .branch-card p {
      margin: 8px 0;
    }

    .branch-card i {
      margin-right: 8px;
      color: #c0202c;
    }

    .bottom-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      margin-bottom: 60px;
    }

    .feedback-form,
    .your-contact {
      width: 80%;
    }

    form {
      display: flex;
      flex-direction: column;
    }

    .inline-inputs {
      display: flex;
      gap: 10px;
      margin-bottom: 10px;
      flex-wrap: wrap;
    }

    input,
    textarea {
      padding: 10px;
      width: 100%;
      border: 1px solid #ccc;
      border-radius: 4px;
      resize: vertical;
    }

    textarea {
      height: 100px;
    }

    button {
      background-color: #c0202c;
      color: #fff;
      padding: 10px 20px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      margin-top: 10px;
    }

    .team-member {
      display: flex;
      gap: 15px;
      margin-bottom: 20px;
    }

    .team-member img {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      object-fit: cover;
    }

    .team-member strong {
      font-size: 16px;
      color: #000;
    }

    .map-box {
      width: 100%;
    }

    .map-box iframe {
      width: 100%;
      height: 400px;
      border: none;
    }

    @media (max-width: 768px) {
      .bottom-grid {
        flex-direction: column;
      }

      .inline-inputs {
        flex-direction: column;
      }
    }