body {
  font-family: 'Hind Siliguri', sans-serif;
/*   background-color: #FFF9E6; */
  color: #333;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 880px;
  margin: 0 auto;
  padding: 20px;
}

.logo {
  max-width: 150px;
  margin: 0 auto 20px;
  display: block;
}

header {
  text-align: center;
  margin-bottom: 30px;
}

h1 {
  color: #F74541;
  font-size: 28px;
}

h2 {
  color: #3A5A99;
  margin-top: 30px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin: 30px 0;
}

.card {
  background-color: #F4F1EB;
  border-left: 5px solid #ffcc33;
  padding: 15px 20px;
  border-radius: 10px;
  width: 160px;
  text-align: center;
  font-weight: bold;
  color: #e22f33;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: floatIn 0.5s ease forwards;
}

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

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  background-color: #F4F1EB;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

section.consent {
  background-color: #FFB6A9;
  font-weight: bold;
  text-align: center;
}

footer {
  text-align: center;
  font-size: 14px;
  margin-top: 40px;
  color: #666;
}

a {
  color: #e22f33;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
