/*
 * Quark 2 — user customizations
 *
 * This file is safe to edit. It is loaded last so anything here overrides
 * theme.css without having to mark rules !important.
 */
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-cards-grid .card {
  background: #fff;
  border: 1px solid #e6e6e6;
  padding: 1.5rem;
  border-radius: 10px;
  transition: 0.2s ease;
}

.service-cards-grid .card:hover {
  transform: translateY(-4px);
}
.hero {
  padding: 5rem 1rem;
  background: #0f172a;
  color: #fff;
}

.hero a {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.25rem;
  background: #e5bd04;
  color: #000;
  text-decoration: none;
  border-radius: 6px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}
.contact-section {
  padding: 4rem 1rem;
  background: #f8f9fb;
}

.contact-content {
  max-width: 700px;
  margin: 0 auto 2rem auto;
  text-align: center;
}

.contact-section form {
  max-width: 600px;
  margin: 0 auto;
}

.contact-section input,
.contact-section textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.contact-section button {
  background: #0f172a;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}