

/* CARD */
.selection-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* HEADER */
.selection-header h1 {
  color: var(--primary-blue);
  font-weight: 800;
  margin-bottom: 10px;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--accent-red);
  display: block;
  margin: 10px auto 25px;
}

/* BOX */
.selection-box {
  background: #f9fafc;
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid var(--primary-blue);
  transition: 0.3s;
}

/* HOVER */
.selection-box:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* TITLE */
.selection-box h3 {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.selection-box h3::after {
  content: "";
  width: 50px;
  height: 3px;
  background: var(--accent-red);
  display: block;
  margin-top: 6px;
}

/* LIST */
.styled-list {
  list-style: none;
  padding-left: 0;
}

.styled-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  line-height: 1.7;
  color: var(--accent-red);
}

/* ICON */
.styled-list li::before {
  content: "✔";
  color: var(--accent-red);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .selection-card {
    padding: 20px;
  }

  .selection-header h1 {
    font-size: 22px;
  }

  .selection-box h3 {
    font-size: 18px;
  }
}