   body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
       background: linear-gradient(to right, #f9f9f9, #b8b8b8);
      color: #4a3b2c;
    }

    .contact-section {
        
      max-width: 960px;
      margin: 4rem auto;
      padding: 2rem;
      background-color: #f9f9f9;
      border-radius: 20px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.488);
    }

    .contact-section h2 {
      text-align: center;
      font-size: 1.8rem;
      margin-bottom: 1.5rem;
      color: #4a3b2c;
      margin-left: 4rem;
      margin-right: 4rem;

    }
    .contact-section h2::after {
        content: "";
        display: block;
        width: 80px;
        height: 4px;
        background-color: #be5915;
        margin: 0.8rem auto 0;
        border-radius: 2px;
        margin-bottom: 3rem;
     }

    .form-row {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      margin-bottom: 1rem;
      flex: 1 1 45%;
    }

    .form-group-full {
      flex: 1 1 100%;
    }

    .form-group label {
      margin-bottom: 0.3rem;
      font-weight: bold;
      color: #4a3b2c;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      padding: 0.7rem;
      border-radius: 10px;
      border: 1.5px solid #be5915;
      box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
      font-size: 1rem;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: #d77432;
      box-shadow: 0 0 0 2px rgba(190, 89, 21, 0.3);
    }

    .checkbox-group {
      display: flex;
      align-items: center;
      margin: 1rem 0;
    }

    .checkbox-group input {
      margin-right: 0.5rem;
    }

    .submit-button {
      background-color: #4a3b2c;
      color: white;
      padding: 0.7rem 1.5rem;
      font-size: 1rem;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .submit-button:hover {
      background-color: #3b2f24;
    }

    .contact-info {
      display: flex;
      justify-content: space-around;
      margin-top: 3rem;
      flex-wrap: wrap;
      text-align: center;
    }

    .contact-info .info-item {
      flex: 1;
      min-width: 220px;
      margin: 1rem;
    }

    .info-item i {
      font-size: 2rem;
      color: #be5915;
      margin-bottom: 0.5rem;
    }

    .required-note {
      text-align: center;
      font-size: 0.85rem;
      margin-top: 1rem;
      color: #4a3b2c;
    }

    #popup-confirmation {
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #4a3b2c;
  color: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  text-align: center;
  width: 90%;
  max-width: 400px;
  font-size: 1.1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

#popup-confirmation i {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #be5915;
  display: block;
}

#popup-confirmation.show {
  opacity: 1;
  pointer-events: auto;
}


    @media screen and (max-width: 600px) {
      .form-group {
        flex: 1 1 100%;
      }
    }