body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f6f8;
  color: #222;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  background: #ffffff;
  padding: 50px 40px;
  max-width: 900px;
  width: 95%;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.logo {
  font-size: 52px;
  font-weight: bold;
  letter-spacing: 2px;
}

.tagline {
  margin-top: 10px;
  font-size: 18px;
  color: #555;
}

.divider {
  width: 60px;
  height: 3px;
  background: #1a4fd8;
  margin: 25px auto;
}

.text {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

/* Services */
.services {
  margin-top: 35px;
  text-align: left;
}

.services h3 {
  text-align: center;
  color: #1a4fd8;
  margin-bottom: 15px;
}

.services ul {
  list-style: none;
  padding: 0;
}

.services ul li {
  margin-bottom: 8px;
  font-size: 15px;
}

/* Gallery */
.gallery {
  margin-top: 45px;
}

.gallery h3 {
  color: #1a4fd8;
  margin-bottom: 25px;
}

.ac-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.ac-card {
  background: #f9fafb;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.ac-card:hover {
  transform: translateY(-5px);
}

.ac-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.ac-card span {
  display: block;
  padding: 12px;
  font-size: 15px;
  font-weight: bold;
  color: #333;
}

/* Contact */
.contact {
  margin-top: 35px;
  font-size: 16px;
}

.contact a {
  color: #1a4fd8;
  text-decoration: none;
  font-weight: bold;
}

footer {
  margin-top: 40px;
  font-size: 14px;
  color: #888;
}

/* Responsive */
@media (max-width: 600px) {
  .card {
    padding: 35px 20px;
  }

  .logo {
    font-size: 40px;
  }
}
