.contact-section {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
  }
  
  .contact-section .section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #234754;
  }
  
  .contact-section .section-subtitle {
    font-size: 16px;
    color: #234754;
    margin-bottom: 30px;
  }
  
  #contact-form {
    max-width: 700px;
    margin: auto;
    text-align: left;
  }
  
  .form-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .form-group input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
  }
  
  textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    margin-bottom: 20px;
  }
  
  .checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
  }
  
  .checkbox-container input {
    transform: scale(1.2);
  }
  
  .btn-primary {
    padding: 10px 24px;
    background-color: #0071e3;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
  }
  
  .btn-primary:hover {
    background-color: #005bb5;
  }
  
  .form-status {
    margin-top: 20px;
    font-size: 14px;
    color: green;
  }
  