  .contact-container {
    width: 90%;
    font-family: 'Quicksand', sans-serif;
    max-width: 1200px;
    margin: 2rem auto;
    display: flex;
    background-color: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
  }

  /* Contact Info Section */
  .contact-info {
    position: relative;
    background: url('https://leading-e-markets.com/lsite/images/assest/LM%202.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    width: 40%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
  }

  .contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #152C47;
    opacity: 0.6;
    z-index: 1;
  }

  .contact-info h2,
  .contact-details,
  .social-links {
    position: relative;
    z-index: 2;
  }

  .contact-info h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
  }

  .contact-details div {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
  }

  .contact-details i {
    margin-right: 1rem;
    font-size: 1.5rem;
  }

  .social-links {
    display: flex;
    gap: 1rem;
  }

  .social-links a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.3s ease;
  }

  .social-links a:hover {
    color: #ecf0f1;
  }

  /* Contact Form Section */
  .contact-form {
    width: 60%;
    padding: 3rem;
    background-color: white;
  }

  .contact-form h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #152C47;
  }

  .tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
  }

  .tab-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    background-color: #ddd;
    margin: 0 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }

  .tab-btn.active {
    background-color: #152C47;
    color: white;
  }

  .tab-form {
    display: none;
  }

  .tab-form.active {
    display: block;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
  }

  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #152C47;
  }

  .form-group textarea {
    resize: vertical;
    min-height: 150px;
  }

  .submit-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: #152C47;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .submit-btn:hover {
    background-color: #2980b9;
  }

  .technical-note {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #f2f2f2;
    border-left: 5px solid #152C47;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
    }

    .contact-info,
    .contact-form {
      width: 100%;
      padding: 2rem;
    }
  }