body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5f7fa;
  color: #222;
}

/* Header */
.site-header {
  background-color: #705C53;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.site-header h1 {
  margin: 0;
  font-size: 36px;
}

.site-header p {
  margin-top: 10px;
  font-size: 18px;
}

/* Services Section */
.services-section {
  padding: 60px 40px;
  text-align: center;
}

.services-section h2 {
  font-size: 28px;
  color: #002147;
  margin-bottom: 10px;
}

.section-description {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 16px;
  color: #555;
}

/* Card Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  width: 100%;
  height: 550px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.card-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #002147;
}

.card-content p {
  font-size: 14px;
  color: #444;
  flex-grow: 1;
}

.card-btn {
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #705C53;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  align-self: flex-start;
  transition: background-color 0.3s;
}

.card-btn:hover {
  background-color: #e5cabd;
}

/* Responsive for small screens */
@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}



.card-grid.two-col {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
  .card-grid.two-col {
    grid-template-columns: 1fr;
  }
}
