.contact-section {
    padding: 50px ;
    max-width: 1200px;
    margin: auto;
    margin-top: 40px;
  }

  .contact-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 40px;
  }

  .contact-title span {
    color: #ffcc00;
  }

  .contact-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    width: 90%;
    margin-left: 5%;
  }

  .contact-info {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .info-box {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }

  .info-box i {
    font-size: 1.5rem;
    color: darkred;
    margin-top: 3px;
  }

  .info-box .info-text {
    font-size: 0.95rem;
    color: #333;
  }

  .info-box .info-title {
    font-weight: bold;
    color: darkred;
  }

  .contact-form {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .form-row {
    display: flex;
    gap: 10px;
    /* flex-wrap: wrap; */
  }

  .form-row input {
    flex: 1 1 48%;
  }

  input, textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    width: 100%;
    background-color: #f3f3f3;
  }

  textarea {
    height: 120px;
    resize: vertical;
  }

  .send-button {
    background-color: darkred;
    color: white;
    font-weight: bold;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    width: 150px;
    align-self: flex-start;
  }

  .send-button:hover {
    background-color: #a30000;
  }
  .middle-contact-section{
    width: 100%;
    height:auto;
  }

  .middle-contact-section img{
    width: 100%;
    height:auto;
  }

  @media (max-width: 768px) {
    .form-row input {
      flex: 1 1 100%;
    }

    .contact-container {
      flex-direction: column;
    }

    .send-button {
      width: 100%;
      text-align: center;
    }
  }