  .contact-section {
    text-align: center;
    padding: 30px 20px 20px 20px;
    background: #f3ffef;
    color: #888888;
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 12px;
  }
  .contact-section h2 {
    font-size: 24px;
    color: #222;
    font-weight: bold;
    margin-bottom: 10px;
    margin: 0 auto;
    padding-bottom: 20px;
  }

  .contact-section h3 {
    margin: 0 auto;

  }

  .contact-section p {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .contact-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
  }
  .contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
  }
  .contact-item a {
    text-decoration: none;
    color: #3636ff;
    font-size: 16px;
    margin-top: 10px;
  }
  .contact-form {
    margin-top: 40px;
    padding: 20px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    color: #555555;
  }
  .contact-form label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
  }
  .contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 18px;
    color: #333;
    font-family: 'Mulish', sans-serif;
  }

  input[type="email"], input[type="text"] {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 18px;
    color: #333;
    font-family: 'Mulish', sans-serif;
    height: 50px;
    width: 100%;
    margin-top: 5px;
    margin-bottom: 10px;
    opacity: 1;
    text-indent: 15px;
  }

  .contact-form button {
    margin-top: 15px;
    padding: 10px;
    background: #1579c2;
    font-size: 18px;
    color: #fff;
    font-family: 'Mulish', sans-serif;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    height: 50px;
  }
  .contact-form button:hover {
    background: #125a90;
  }
