* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Segoe UI", sans-serif;
    background-color: #f5f1ec;
    color: #1a1a1a;
  }
  
  .contact-section {
    padding: 40px 20px;
  }
  
  .header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .header .icon {
    font-size: 40px;
    color: #12ad2b;
    margin-bottom: 10px;
  }
  
  .header h1 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  
  .header p {
    font-size: 16px;
    color: #666;
  }
  
  .features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
  }
  
  .features span {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    gap: 8px;
  }
  
  .contact-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
  }
  
  .contact-info {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .info-box {
    background: #fff;
    padding: 16px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  
  .info-box h4 {
    font-size: 14px;
    color: #888;
  }
  
  .info-box p {
    font-size: 16px;
    margin-top: 4px;
    font-weight: bold;
  }
  
  .arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #999;
  }
  
  .social {
    margin-top: 10px;
  }
  
  .social-icons {
    margin-top: 10px;
    display: flex;
    gap: 12px;
  }
  
  .social-icons i {
    background-color: #12ad2b;
    color: white;
    padding: 10px;
    border-radius: 6px;
    font-size: 16px;
  }
  
  .contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    flex: 2;
    min-width: 300px;
    max-width: 700px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }
  #contactForm h1{
    text-align:center;
    justify-content: center;
  } 
  .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
  
  .contact-form input,
  .contact-form textarea {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background-color: #fdfdfd;
  }
  
  textarea {
    width: 100%;
  }
  
  .checkbox-group {
    margin: 20px 0;
  }
  
  .checkbox-group p {
    margin-bottom: 10px;
    font-weight: 500;
  }
  
  .checkbox-group label {
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 10px;
    font-size: 14px;
  }
  
  button {
    background-color: #12ad2b;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  button:hover {
    background-color:#12ad2b;
  }
  
  .form-message {
    margin-top: 15px;
    color:#12ad2b;
    font-size: 14px;
  }
  
  /* Responsive Design */
  @media screen and (max-width: 768px) {
    .form-row {
      flex-direction: column;
    }
  
    .features {
      flex-direction: column;
      align-items: center;
    }
  
    .contact-container {
      flex-direction: column;
      align-items: center;
    }
  
    .contact-form {
      width: 100%;
    }
  
    .contact-info {
      width: 100%;
    }
  }
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 100px;
    left: 0; top: 0;
    width: 100%; height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
  }
  
  .modal-content {
    background-color: #fff;
    margin: auto;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
  
  .close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }
  