:root {
  --greyDark: #393636;
  --text: #1d1d1f;
  --a: #383c3f;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;

}



.main-header {
  position: relative;
  height: 300px;
  color: var(--text);
  overflow: hidden;

}


.main-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(paul-menz-jh_KHWamObU-unsplash.jpg);
  background-size: cover;
  background-position: center;
  opacity: 0.7;
  z-index: 0;
  filter: brightness(90%);
}


.main-header h1,
.main-header ul {
  position: relative;
  z-index: 1;
}


h1 {
  font-family: "Play Fair";
  position: absolute;
  top: 105px;
  left: 150px;
  font-size: 53px;
  font-weight: 1000;
}


.list1 {
  position: absolute;
  top: 50px;
  margin-left: 1300px;
  font-weight: 400;
}

.list1 li {
  display: inline-block;
  margin: 5px;
}

.list1 li a {
  text-decoration: none;
  color: var(--greyDark);
}

.icon {
  width: 23px;
  height: 23px;
}

.section1 {
  display: flex;
  justify-content: center;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}

.section1 img {
  margin-top: 40px;
  width: 550px;
  height: 350px;
  padding: 60px;
  border-radius: 100px;
}


.section2 h2 {
  font-family: "Play Fair";
  text-align: center;
  margin-top: 100px;
  font-size: 40px;
}

.section2 ul {
  font-family: "Klee One";
  text-align: left;
  margin-left: 400px;
  margin-top: 90px;
  list-style: none;
  font-size: 15px;
}

.section2 p {
  font-family: "Klee One";
  margin-top: 90px;
  margin-left: 400px;
}



.section3 h3 {
  font-family: "Play Fair";
  text-align: center;
  margin-top: 150px;
  font-size: 40px;
  margin-bottom: 100px;
}

.section3 ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-items: center;
  list-style-type: none;
  align-items: center;
  margin: 0 auto;
  max-width: 1100px;
}


.section3 ul li img {
  width: 300px;
  height: 195px;
  border-radius: 10%;
}

.section4 {
  font-size: 15px;
  flex-direction: column;
  display: flex;
  justify-content: center;
  height: 100vh;
  align-items: center;
}

.section4 h4{
  font-family: "Play Fair";
  font-size: 40px;
  margin-bottom: 100px;
}

.section4 dl {
  font-family: "Klee One";
  font-size: 18px;
  text-align: left;
}

.section4 dl div {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  letter-spacing: 2px;
  border-top: 0.5px solid #000;
   border-bottom: 0.5px solid #000;
   padding-top: 10px;
   padding-bottom: 10px;

}

.section4 dt {
  font-weight: bold;
  min-width: 120px;
  margin-left: 20px;
}

.section4 dd {
  margin: 0;
  margin-left: 250px;
  margin-right: 40px;
}

.section5{
  text-align: center;
}

.section5 h5{
  font-family: "Play Fair";
  font-size: 40px;
  text-align: center;
}

.section5 form{
font-family: "Klee One";
  display: flex;
  flex-direction: column;
  align-items: center; 
  width: 100%;
  margin-top: 40px;
}

dl {
  width: 60%;          
  text-align: left;     
}

dl div {
  display: flex;         
  align-items: center;   
  margin-bottom: 15px;   /
}

dt {
  min-width: 100px;      
  font-weight: bold;
}

dd {
  flex: 1;              
  margin: 0;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
}

textarea {
  height: 100px;
}

.button {
  text-align: center;
  margin-top: 20px;
}

input[type="submit"] {
  background-color: #333;
  color: white;
  border: none;
  padding: 10px 30px;
  cursor: pointer;
  border-radius: 5px;
}
