body {
  font-family: 'Orbitron', Arial, sans-serif;
  background-color: #f5f5f5;
  color: #000;
  margin: 0;
  padding: 0;
}

header {
  text-align: center;
  padding: 20px 10px 10px;
  background-color: #fff;
}

.logo {
  display: block;
  max-width: 250px;
  height: auto;
  margin: 0 auto;
}

.contact-info {
  text-align: center;
  font-size: 14px;
  margin-bottom: 10px;
}

.mission {
  text-align: center;
  margin: 20px;
}

.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.service {
  background-color: #ffffff;
  border: 2px solid #00ff88; /* Green matching logo eyes */
  border-radius: 10px;
  padding: 20px;
  width: 280px;
  text-align: center;
  box-shadow: 0 0 10px #00ff8844;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px #00ff88;
}

.service img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 5px;
}

.service a {
  display: none;
}

.accordion {
  background-color: #ffffff;
  color: #000;
  cursor: pointer;
  padding: 14px;
  width: 100%;
  border: 2px solid #00ff88;
  text-align: center;
  font-size: 16px;
  margin-top: 5px;
}

.panel {
  padding: 0 18px 10px;
  background-color: #ffffff;
  color: #000;
  display: none;
  overflow: hidden;
  border: 2px solid #00ff88;
  border-top: none;
  margin-bottom: 10px;
}

.pricing-section {
  text-align: center;
  padding: 20px;
  background-color: #f9f9f9;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #fff;
  color: #000;
}

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600&display=swap');