.contact-section {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 7rem auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  }

  .form-container {
    flex: 1 1 68%;
    padding: 40px;
    background: #fff;
  }

  .form-container h2 {
    font-size: 3.5rem;
    font-family: 'Lora';
    color: #111;
    margin-bottom: 20px;
  }

  .form-container p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
  }

  form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  input, textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 1.4rem;
  }

  .half-width {
    width: calc(50% - 10px);
  }

  textarea {
    height: 120px;
    resize: vertical;
  }

  .btn {
    background: linear-gradient(to right, #ec1c22, #ec1c22);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
  }

  .btn:hover {
    background: linear-gradient(to right, #f14b51, #ec1c22);
  }

  .info-container {
    flex: 1 1 32%;
    background: url('../images/contact-img.webp') center center/cover no-repeat;
    color: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    
  }

  .info-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 174, 235, 0.7);
    z-index: 0;
  }

  .info-content {
    position: relative;
    z-index: 1;
    filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.5));
  }

  .info-content h3 {
    font-size: 2.9rem;
    margin-bottom: 10px;
  }

  .info-content p {
    font-size: 1.8rem;
    margin-bottom: 20px;
    line-height: 1.6;
  }

  .info-content strong {
    display: block;
    margin-top: 20px;
    font-size: 2rem;
  }

  .info-content a {
    text-decoration: none !important;
  }

  @media (max-width: 768px) {
    .contact-section{
      margin: 7rem 1.5rem;
    }
    .form-container, .info-container {
      flex: 1 1 100%;
      padding: 30px 20px;
    }

    .half-width {
      width: 100%;
    }

    .info-container {
      background-position: center;
    }
    .info-content h3 {
      font-size: 2.6rem;
    }
  
    .info-content p {
      font-size: 16px;
      line-height: 1.4;
    }
  
  }

  /* Map Css */
  .map-container{
    width: 100%;
    height: 80vh;
    
  }
  .map-container iframe{
    width: 100%;
    height: 80vh;
  } 