body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  padding: 60px 15px;
}

header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
  justify-content: flex-start;
}

header img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

h1 {
  font-weight: 700;
  margin: 0;
  color: #FA003F;
}

p {
  max-width: 700px;
  line-height: 2;
  font-size: 1.1rem;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 8px;
  transition: color 0.3s ease, background-color 0.3s ease;
  padding: 0 4px;
}

a:hover {
  background-color: #FA003F;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  padding: 0 4px;
}

.get-in-touch {
  display: inline-block;
  padding-top: 16px;
  position: relative;
}

.get-in-touch::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 4px;
  background-color: #FA003F;
}
