body {
  font-family: 'Noto Sans Tamil', sans-serif;
  margin: 0;
  padding: 0;
  background: #fefefe;
  color: #333;
  font-size: 16px;
  line-height: 1.5;
}

header {
  background-color: #ffcc00;
  text-align: center;
  padding: 20px;
}

header h1 {
  margin: 0;
  font-size: 28px;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  padding: 20px;
}

.service {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  text-align: center;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.service img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.service h3 {
  font-size: 16px;
  margin: 0;
}

footer {
  text-align: center;
  padding: 10px;
  background: #eee;
  font-size: 14px;
}

.contact {
  padding: 20px;
  background-color: #f9f9f9;
}

.contact h2 {
  text-align: center;
  margin-bottom: 15px;
}

.contact p {
  font-size: 16px;
  margin: 5px 0;
}

.contact a {
  color: #007bff;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

.map {
  margin-top: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  header h1 {
    font-size: 22px;
  }

  .service h3,
  .contact p {
    font-size: 15px;
  }

  .services {
    gap: 10px;
    padding: 10px;
  }
}
