.call-btn {
  display: block;
  padding: 14px;
  font-size: 18px;
  background: #c89b3c;
  color: white;
  text-align: center;
  border-radius: 8px;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

/* Header */
.header {
  text-align: center;
  padding: 20px;
  background: #f5f5f5;
}

.header h1 {
  margin-bottom: 8px;
}

.btn-primary {
  display: inline-block;
  margin-top: 10px;
  padding: 14px 20px;
  background: #c89b3c;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
}

/* Sections */
section {
  padding: 20px;
}

/* Cards */
.card {
  background: #fff;
  padding: 16px;
  margin-bottom: 12px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
img {
  max-width: 100%;
  height: auto;
}

/* Sticky bottom bar */
.sticky-bar {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
}

.sticky-bar a {
  flex: 1;
  padding: 14px;
  text-align: center;
  background: #333;
  color: white;
  text-decoration: none;
}

/* Desktop enhancement */
@media (min-width: 768px) {
  .services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}