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

body {
  font-family: "Roboto", serif;
  font-size: 16px;
  color: #5A6362;
  background-color: #F4F4F4;
  line-height: 1.6;
}

.main-header {
  min-height: 750px;
  background-color: #114A43;
  background-image: url("../img/header-bg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px;
  text-align: center;
  color: #FFF;
  margin-bottom: 60px;
}

.main-header .logo {
  text-align: center;
  margin-bottom: 30px;
  margin-top: 30px;
}

.main-header .logo img {
  max-width: 400px;
  width: 100%;
}

.main-header .photo-container {
  text-align: center;
  position: relative;
  background-image: url("../img/img-flower.svg");
  background-position: bottom;
  background-size: 500px;
  background-repeat: no-repeat;
  padding-bottom: 100px;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .main-header .photo-container {
    background-size: contain;
  }
}

.main-header .photo-container .photo {
  width: 250px;
}

.main-header h1 {
  font-weight: 500;
  font-size: 42px;
  text-align: center;
  color: #FFFFFF;
}

.main-header h2 {
  font-weight: 500;
  font-size: 30px;
  text-align: center;
  color: #FFFFFF;
}

.container {
  max-width: 1200px;
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  margin-right: auto;
  margin-left: auto;
}

.content-box {
  margin-bottom: 60px;
}

.content-box h3 {
  font-weight: 600;
  font-size: 36px;
  text-align: left;
  color: #154B45;
  margin-bottom: 20px;
}

.content-box p {
  font-size: 16px;
  line-height: 1.6;
  color: #5A6362;
  margin-bottom: 16px;
  font-weight: 400;
}

.content-box p strong {
  display: block;
}

.contact-info {
  border-radius: 20px;
  padding: 20px;
  background-color: #114A43;
  color: #FFF;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

.contact-info svg {
  width: 100px;
  height: 100px;
  margin-top: 0;
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-info h4 {
  font-size: 18px;
  font-weight: 400;
}

.contact-info a {
  color: #FFF;
  text-decoration: underline;
}

.contact-info a:hover {
  text-decoration: none;
}
