body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #cb6ce6;
}

header {
  background-color: #592a5e;
  height: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30%;
}

.logo img {
  height: 120px;
}
  
  nav ul {
    list-style: none;
    display: flex;
  }
  
  nav li {
    margin-left: 20px;
  }
  
  nav li:first-child {
    margin-left: 0;
  }
  
  nav a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
  }
  
  .contact-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .contact-info {
    background-color: #cb6ce6;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .contact-info h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #5c2d91;
  }
  
  .contact-info p {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .contact-form {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 10px;
  }
  
  .contact-form h1 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: #5c2d91;
  }
  
  .contact-form form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .contact-form label {
    font-size: 20px;
    margin-bottom: 10px;
    color: #5c2d91;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
  }
  
  .contact-form textarea {
    height: 200px;
    resize: none;
  }
  
  .contact-form button[type="submit"] {
    padding: 10px 20px;
    background-color: #5c2d91;
    color: #fff;
    font-size: 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  