:root {
  --primary: #2c3e50;
  --secondary: #e67e22;
  --accent: #27ae60;
  --light: #f8f9fa;
}
body {
  font-family: Arial;
  margin: 0 5%;
  background: #f1f5f9;
  line-height: 1.8;
}
header {
  background: #0f172a;
  color: white;
  padding: 35px;
  text-align: center;
}
.container {
  max-width: 850px;
  margin: auto;
  background: white;
  padding: 30px;
}
h2 {
  color: #16a34a;
}
.back-wrapper {
  text-align: left;
  margin-top: 20px;
  margin-bottom: 50px;
}
.link {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 0 20px;
}
.btn-home {
  background: #111827;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  transition: 0.3s;
}

.btn-home:hover {
  background: #16a34a;
  transform: scale(1.05);
}
.cta {
  background: #16a34a;
  color: white;
  padding: 14px 20px;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
  border-radius: 8px;
}
footer {
  background: #0f172a;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}
/* Styling Tabel */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.95em;
}
.price-table th,
.price-table td {
  border: 1px solid #edf2f7;
  padding: 14px;
  text-align: left;
}
.price-table th {
  background-color: #2c3e50;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.price-table tr:nth-child(even) {
  background-color: #f8fafc;
}
.highlight-row {
  background-color: #fff3e0 !important;
  font-weight: bold;
  color: #e65100;
}

.grid-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}
.service-card {
  background: var(--light);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #ddd;
}
.service-card h3 {
  color: var(--secondary);
  margin-top: 0;
}

.price-info {
  background: #e8f5e9;
  border: 1px solid var(--accent);
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
}
.price-info strong {
  color: var(--accent);
}
