:root {
  --primary-blue: #263489;
  --accent-red: #ec1d25;
  --text-black: #000;
  --bg-light: #f4f6f9;
}


.deu-hero {

  padding: 30px;
  border-radius: 10px;
}

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

.deu-title {
  color: var(--primary-blue);
  font-weight: 700;
}

.section-title {
  color: var(--accent-red);
}

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

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

.deu-img {
  border-radius: 10px;
  transition: 0.3s;
}
.deu-img:hover {
  transform: scale(1.03);
}

.deu-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 10px;
}

/* HEADER */
.deu-table th {
  background: var(--primary-blue);
  color: #fff;
  padding: 12px;
  text-align: left;
}

/* BODY */
.deu-table td {
  padding: 12px;
  border-bottom: 1px solid #eee;
}

/* STRIPES */
.deu-table tr:nth-child(even) {
  background: #f9f9f9;
}

/* LIGHT HOVER */
.deu-table tbody tr:hover {
  background: #eef2ff;
  transform: scale(1.005);
}

/* TEXT */
.deu-table tbody tr:hover td {
  color: var(--text-black);
}

/* DESIGNATION */
.deu-table td:nth-child(3) {
  background: #fff3f3;
  font-weight: 500;
}

/* PHONE */
.deu-table td:nth-child(4) {
  background: #f3f6ff;
  font-weight: 500;
}

/* HOVER EFFECT ON COLUMNS */
.deu-table tbody tr:hover td:nth-child(3) {
  background: #ffe5e5;
}

.deu-table tbody tr:hover td:nth-child(4) {
  background: #e6ecff;
}