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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f8fc;
  color: #333;
  line-height: 1.6;
  padding: 20px;
}

/* Header Section */
.agents-hero {
  background: linear-gradient(to right, #004080, #0066cc);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.agents-hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.agents-hero p {
  font-size: 18px;
}

/* Agent Section */
.agent-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 0;
}

.agent-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  padding: 20px;
  width: 280px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.agent-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.agent-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 4px solid #004080;
}

.agent-card h3 {
  font-size: 20px;
  color: #004080;
  margin-bottom: 5px;
}

.agent-card p {
  font-size: 14px;
  margin-bottom: 8px;
}

/* Footer */
.footer {
  background-color: #004080;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  margin-top: 40px;
  font-size: 14px;
}

.footer p {
  margin: 6px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .agent-section {
    flex-direction: column;
    align-items: center;
  }
}
