/* COLORS */
:root {
  --primary-blue: #263489;
  --accent-red: #ec1d25;
  --text-black: #000000;
  --bg-light: #f4f6f9;
}

/* SECTION */


/* CARD */
.deu-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* TITLE */
.deu-title {
  font-weight: 700;
}

/* TEXT */
.deu-text {
  color: var(--text-black);
  line-height: 1.7;
}

/* SUBTITLE */
.section-subtitle {
  color: var(--accent-red);
  margin-top: 20px;
  font-weight: 600;
}

/* LIST */
.deu-list {
  padding-left: 20px;
}

.deu-list li {
  margin-bottom: 8px;
}

/* IMAGE */
.deu-img {
  border-radius: 10px;
  transition: 0.3s;
}

.deu-img:hover {
  transform: scale(1.03);
}