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

body {
  font-family: "Quicksand", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 48px;
  background-color: #fafafa;
  color: #333;
}

/* === Container – two-column layout === */
.container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 124px;
  max-width: 1200px;
  width: 100%;
}

/* === Left column – text === */
.content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 500px;
  flex-shrink: 0;
}

/* === Typography === */
.header {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 56px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #1a1a1a;
}

.details {
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #666;
}

.contact {
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: #666;
}

.blog-info {
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #666;
}

.farewell {
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #333;
}

/* === Right column – image === */
.illustration {
  flex-shrink: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.illustration img {
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
}

/* === Links === */
a {
  color: #009a00;
  text-decoration: none;
  font-weight: bold;
}
a:visited {
  color: #009a00;
}
a:hover {
  color: #007a00;
  text-decoration: underline;
}
a:active {
  color: #006c00;
}

/* === Responsive === */
@media (max-width: 960px) {
  .container {
    flex-direction: column-reverse;
    gap: 40px;
    text-align: center;
  }

  .content {
    align-items: center;
    max-width: 100%;
  }

  .header {
    font-size: 32px;
    line-height: 40px;
  }

  .details,
  .contact {
    font-size: 18px;
    line-height: 26px;
  }

  .blog-info {
    font-size: 16px;
    line-height: 24px;
  }

  .farewell {
    font-size: 20px;
    line-height: 28px;
  }

  .illustration img {
    max-width: 360px;
  }
}

@media (max-width: 480px) {
  body {
    padding: 24px 16px;
  }

  .container {
    gap: 24px;
  }

  .header {
    font-size: 24px;
    line-height: 32px;
  }

  .details,
  .contact {
    font-size: 16px;
    line-height: 24px;
  }

  .blog-info {
    font-size: 14px;
    line-height: 20px;
  }

  .farewell {
    font-size: 17px;
    line-height: 24px;
  }

  .illustration img {
    max-width: 280px;
  }
}
