/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: 'Public Sans', sans-serif;
  background-color: #1b3c53;
  min-height: 100vh;
}

/* Topbar */
.topbar {
  display: flex;
  justify-content: flex-end;
  padding: 20px 40px;
}

.login {
  border: 1px solid #ffffff;
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.login:hover {
  background-color: white;
  color: #1b3c53;
}

/* Header */
.header {
  text-align: center;
  color: white;
  margin-top: 10px;
}

.header h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.header p {
  opacity: 0.8;
}

/* Container */
.container {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 50px 20px;
  flex-wrap: wrap;
}

/* Card */
.card {
  background: white;
  width: 280px;
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* Image */
.card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 1px solid #1b3c53;
}

/* Text */
.card h2 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #1a2e3b;
}

.role {
  color: #4a9fd4;
  font-weight: 600;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: #555;
}