/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #fdeaee; /* Soft pink background */
  display: flex;
  justify-content: center;
  padding: 20px;
}

.container {
  background: white;
  width: 90%;
  max-width: 500px;
  border: 2px solid #ffd6e0;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* HEADER */
.header {
  text-align: center;
  position: relative;
  background: #ffe4ec;
  padding: 10px;
}

.banner {
  width: 100%;
  border-bottom: 3px solid #ffcad4;
}

.title {
  font-size: 24px;
  color: #d84b7f;
  margin-top: 10px;
}

.subtitle {
  font-size: 14px;
  color: #9c7a7e;
}

/* CONTENT */
.content {
  padding: 15px;
}

.card {
  background: #fff8fb;
  border: 1px dashed #ffb6c1;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  position: relative;
}

.section-title {
  background: #ffd6e0;
  color: #7b4f52;
  font-size: 16px;
  padding: 5px 10px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* Side image positioning */
.side-image {
  width: 80px;
  position: absolute;
  right: 15px;
  bottom: 15px;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 10px;
  background: #ffe4ec;
  font-size: 12px;
  color: #7b4f52;
}

.footer-icons img {
  width: 24px;
  margin: 0 5px;
  cursor: pointer;
}
