

.intro {
  text-align: center;
  padding: 50px 10%;
}

.intro h1 {
  font-size: 28px;
  font-weight: 300;
  color: #777;
  margin-bottom: 20px;
}

.intro h2 {
  font-size: 32px;
  font-weight: bold;
}

.content {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 20px;
  padding: 40px 10%;
}

.content-box {
  flex: 1;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.content-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.content-box p {
  font-size: 16px;
  line-height: 1.6;
}

.signature {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  font-weight: bold;
}