body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #ffcce0;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  flex-wrap: wrap;
}

.image-container img {
  width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  display: block;
  margin: 0 auto;
}

.content {
  max-width: 550px;
  margin-left: 40px;
}

.content h1 {
  font-size: 40px;
  margin-top: 0;
}

.content p {
  font-size: 18px;
  line-height: 1.6;
}

.chat-button {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 24px;
  background-color: #ff4d9d;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.chat-button:hover {
  background-color: #ff3390;
}

.onlyfans-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: black;
  font-weight: bold;
}

.onlyfans-icon {
  width: 30px;
  height: 30px;
  margin-right: 6px;
  vertical-align: middle;
}

/* --- Responsive adjustments --- */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    padding: 20px;
  }

  .content {
    margin-left: 0;
    margin-top: 20px;
    text-align: center;
  }

  .content h1 {
    font-size: 24px;
  }

  .content p {
    font-size: 15px;
  }

  .image-container img {
    width: 80%;
    max-width: 300px;
  }
}
