/* Variables */
body {
  font-family: sans-serif;
  margin: 0;
  background: #333;
  color: #f9f9f9;
}

.site-header {
  background: #1a1a1a;
  color: white;
  padding: 1rem;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header nav {
  display: flex;
  gap: 1rem;
}
.site-header nav a {
  color: white;
  text-decoration: none;
}
.site-header nav a:hover {
  color: #ff4081;
}
.site-header .menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .site-nav {
    display: none;
    flex-direction: column;
    background: #1a1a1a;
    padding: 1rem;
  }
  .site-nav.open {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}
.section {
  padding: 4rem 2rem;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.service-grid .service-item {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.service-grid .service-item i {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ff4081;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}
form input, form textarea, form button {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}
form .honeypot {
  display: none;
}
form button {
  background: #ff4081;
  color: white;
  border: none;
  cursor: pointer;
}
form button:hover {
  background: #ff0d5f;
}

.cookie-notification {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #333;
  color: white;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}
.cookie-notification .cookie-buttons {
  display: flex;
  gap: 1rem;
}
.cookie-notification .cookie-buttons button, .cookie-notification .cookie-buttons a {
  background: #ff4081;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
}

.site-footer {
  background: #1a1a1a;
  color: white;
  text-align: center;
  padding: 2rem;
}
.site-footer a {
  color: #ff4081;
  text-decoration: none;
  margin-left: 0.5rem;
}/*# sourceMappingURL=main.css.map */