body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f0f0f;
  color: white;
  text-align: center;
}
.warning {
  font-weight: bold;
  animation: pulseColor 3s infinite;
}
@keyframes pulseColor {
  0% {
    color: #ff3b3b; /* red */
  }
  50% {
    color: #ffffff; /* white */
  }
  100% {
    color: #ff3b3b; /* back to red */
  }
}

.hero {
  padding: 80px 20px;
}

.logo {
  width: 350px;   /* increase this */
  max-width: 80%;
  height: auto;
  margin-bottom: 20px;
}

h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

p {
  color: #bbb;
  font-size: 1.2em;
}

.button-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-bottom: 40px; /* ADD THIS */
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  background: #ff6b00;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

  .section {
  padding: 80px 20px;  /* increased from 50px */
  background: #1a1a1a;
}


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

.card {
  background: #222;
  padding: 20px;
  border-radius: 10px;
  width: 250px;
}

footer {
  padding: 20px;
  font-size: 0.9em;
  color: #777;
}