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

/* Card */
.result-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Title */
.result-title {
  color: var(--primary-blue);
  font-size: 24px;
  margin-bottom: 20px;
  position: relative;
  padding-left: 14px;
}

.result-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 20px;
  background: var(--accent-red);
}

/* List */
.result-list {
  padding-left: 20px;
}

.result-list li {
  margin-bottom: 12px;
  color: var(--text-black);
  line-height: 1.6;
}

/* Links */
.result-links {
  margin-top: 20px;
}

.result-links a {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 10px;
  padding: 10px 18px;
  background: var(--primary-blue);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.result-links a:hover {
  background: var(--accent-red);
}

/* Responsive */
@media (max-width: 768px) {
  .result-title {
    font-size: 20px;
  }

  .result-card {
    padding: 20px;
  }
}