.container {
    max-width: 1200px;
    width: 100%;
    /* background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
    overflow: hidden;
    display: flex;
    min-height: 700px;
  }

  /* Left Column - Contact Text */
  .left-column {
    flex: 1;
    background: white;
    color: #2c3e50;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .contact-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
  }

  .contact-text {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 20px;
    text-align: center;
  }

  /* Right Column - Form */
  .right-column {
    flex: 1;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
    background-color: white;
  }

  .form-container {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
  }

  .form-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 25px;
    gap: 20px;
  }

  .form-group {
    flex: 1;
    min-width: 200px;
  }

  .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
    font-size: 1.05rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e1e5eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    background-color: #f9fafc;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #4a6fa5;
    box-shadow: 0 0 0 3px rgba(74, 111, 165, 0.2);
    background-color: white;
  }

  .full-width {
    flex: 0 0 100%;
  }

  .submit-btn {
    background: linear-gradient(to right, #4a6fa5, #3a5a8a);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    width: 100%;
  }

  .submit-btn:hover {
    background: linear-gradient(to right, #3a5a8a, #2c4a7c);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 111, 165, 0.3);
  }

  .submit-btn:active {
    transform: translateY(0);
  }

  .separator {
    height: 1px;
    background-color: #e1e5eb;
    margin: 25px 0;
    width: 100%;
  }

  /* Mobile View (Single Column) */
  @media (max-width: 992px) {
    .container {
      flex-direction: column;
      max-width: 600px;
      min-height: auto;
    }

    .left-column {
      padding: 40px 30px;
    }

    .right-column {
      padding: 40px 30px;
    }

    .contact-header h1 {
      font-size: 2.5rem;
    }
  }

  @media (max-width: 576px) {
    .left-column {
      padding: 30px 20px;
    }

    .right-column {
      padding: 30px 20px;
    }

    .contact-header h1 {
      font-size: 2rem;
    }

    .form-group {
      min-width: 100%;
    }
  }

  /* Alert styling */
  .alert {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 20px 25px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 400px;
    transform: translateX(150%);
    transition: transform 0.5s ease-in-out;
  }

  .alert.show {
    transform: translateX(0);
  }

  .alert-success {
    background-color: #2ecc71;
    border-left: 5px solid #27ae60;
  }

  .alert-error {
    background-color: #e74c3c;
    border-left: 5px solid #c0392b;
  }

  .alert i {
    font-size: 1.3rem;
  }

  /* Optional visual enhancements */
  .contact-header h1 {
    position: relative;
    padding-bottom: 15px;
  }

  .contact-header h1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
  }