footer {
    background-color: #333;
    color: white;
    padding: 20px;
  }

  .footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer-column {
    flex: 1;
    padding: 10px;
  }

  .footer-column h3 {
    border-bottom: 2px solid #fff;
    padding-bottom: 5px;
    margin-bottom: 10px;
  }

  .footer-column ul {
    list-style-type: none;
    padding: 0;
  }

  .footer-column ul li {
    margin: 8px 0;
    font-size: 16px;
  }

  .footer-column ul li a {
    color: white;
    text-decoration: none;
  }

  .footer-column ul li a:hover {
    text-decoration: underline;
  }

  .footer-column ul li i {
    margin-right: 8px;
  }

  /* Responsive design */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }

    .footer-column {
      margin-bottom: 20px;
      text-align: center;
    }
  }
  
  
  
  .container11 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    margin-top:20px;
  }

  .form-container {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    box-sizing: border-box;
  }

  h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 24px;
  }

  label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #34495e;
  }

  input, textarea, select {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 14px;
  }

  input[type="submit"] {
    background-color: #321393;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    padding: 14px;
    border-radius: 6px;
  }

  input[type="submit"]:hover {
    background-color: #2980b9;
  }

  input[type="text"], input[type="email"], input[type="date"] {
    font-size: 14px;
  }

  textarea {
    font-size: 14px;
    height: 120px;
  }

  /* Responsive design for smaller screens */
  @media (max-width: 768px) {
    .form-container {
      width: 90%;
      padding: 20px;
    }

    h2 {
      font-size: 20px;
    }
  }