body {
  background-color: #fdf7fa;
  color: #6f5c66;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

h1, h2 {
  font-family: 'Cormorant Garamond', serif;
}

h1 {
  color: #b76a87;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

h2 {
  color: #c17793;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 14px;
}

p {
  margin-bottom: 0;
}

a {
  text-decoration: none;
  transition: 0.3s ease;
}

.container {
  width: 700px;
  margin: 40px auto;
}

.card-white {
  background-color: #ffffff;
  padding: 40px 35px;
  margin: 24px 0;
  border-radius: 18px;
  border: 1px solid #f6e5ec;
  box-shadow: 0px 10px 30px rgba(199, 146, 166, 0.12);
  transition: 0.3s ease;
}

.card-white:hover {
  transform: translateY(-4px);
  box-shadow: 0px 14px 34px rgba(199, 146, 166, 0.16);
}

.text-center {
  text-align: center;
}

.subtitle {
  color: #b990a2;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.img-circle {
  border-radius: 50%;
  border: 5px solid #f9dbe7;
  box-shadow: 0px 8px 20px rgba(184, 92, 122, 0.12);
  object-fit: cover;
  transition: 0.3s ease;
}

.img-circle:hover {
  transform: scale(1.05);
}

#introduction p {
  margin-bottom: 28px;
}

.btn-pink {
  background-color: #e6a0bb;
  color: white;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 30px;
  display: inline-block;
  box-shadow: 0px 8px 18px rgba(232, 160, 191, 0.22);
}

.btn-pink:hover {
  background-color: #d787a6;
  transform: translateY(-2px);
}

.list-inline {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.list-inline > li {
  display: inline;
  padding: 0px 12px;
}

.list-inline a {
  color: #c17793;
  font-size: 22px;
  background-color: #fbeaf1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.list-inline a:hover {
  color: white;
  background-color: #c17793;
}

@media (max-width: 960px) {
  .container {
    width: 700px;
  }
}

@media (max-width: 720px) {
  .container {
    width: 500px;
  }

  .card-white {
    padding: 30px 25px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 28px;
  }
}

@media (max-width: 540px) {
  .container {
    width: 90%;
  }

  .card-white {
    padding: 25px 20px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 24px;
  }

  .img-circle {
    width: 140px;
  }
}