* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #ffffff;
  color: #111111;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.6;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 45px 25px;
}

.header {
  text-align: center;
  padding-bottom: 35px;
}

.brand h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 72px;
  font-weight: 600;
  line-height: 0.85;
  margin: 0;
  letter-spacing: 1px;
}

.assist {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 38px;
  margin-left: 75px;
  margin-top: 5px;
  letter-spacing: 2px;
}

h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
}

h2 {
  font-size: 24px;
  margin-top: 35px;
}

h3 {
  font-size: 32px;
  margin-bottom: 15px;
}

section {
  padding: 25px 0;
  border-bottom: 1px solid #e5e5e5;
}

p {
  font-size: 16px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: 12px 25px;
  border: 1px solid #111;
  text-decoration: none;
  color: #111;
  font-size: 14px;
  cursor: pointer;
  background: white;
}

.button:hover {
  background: #111;
  color: white;
}

ul {
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

form {
  margin-top: 25px;
}

label {
  display: block;
  margin-bottom: 18px;
}

input,
textarea {
  width: 100%;
  margin-top: 7px;
  padding: 12px;
  border: 1px solid #ccc;
  font-family: inherit;
  font-size: 15px;
}

fieldset {
  border: 1px solid #ddd;
  padding: 18px;
  margin-bottom: 20px;
}

legend {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
}

fieldset label {
  margin-bottom: 10px;
}

input[type="checkbox"],
input[type="radio"] {
  width: auto;
  margin-right: 8px;
}

.contact {
  border-bottom: none;
}

a {
  color: #111;
}

@media (max-width: 600px) {

  main {
    padding: 30px 20px;
  }

  .brand h1 {
    font-size: 58px;
  }

  .assist {
    font-size: 32px;
    margin-left: 45px;
  }

  .buttons {
    flex-direction: column;
  }

  .button {
    text-align: center;
  }
}