body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #2a2a2a; /* Gunmetal grey */
  color: #ffffff;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

.header {
  background-color: #1e1e1e;
  padding: 20px 0;
  border-bottom: 3px solid #39ff14; /* Neon green */
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #39ff14;
}

.nav {
  float: right;
}

.nav a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
}

.hero {
  background-color: #333333;
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  color: #39ff14;
  font-size: 48px;
}

.hero p {
  font-size: 18px;
}

.services {
  background-color: #2a2a2a;
  padding: 60px 20px;
}

.services h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  color: #39ff14;
}

.service {
  margin-bottom: 40px;
}

.service h3 {
  font-size: 24px;
  color: #ffffff;
}

.img-placeholder {
  width: 100%;
  height: 200px;
  background-color: #444;
  color: #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px 0;
  font-size: 16px;
  border: 2px dashed #39ff14;
}

.footer {
  background-color: #1e1e1e;
  padding: 20px;
  text-align: center;
  font-size: 14px;
}
/* Contact Form */
.contact-form-section {
  background-color: #2a2a2a;
  padding: 60px 20px;
}

.contact-form-section h2 {
  color: #39ff14;
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 5px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 20px;
  padding: 12px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
}

.contact-form button {
  background-color: #39ff14;
  color: #000;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #2ecc71;
}

/* About Section */
.about-section {
  padding: 60px 20px;
  background-color: #1e1e1e;
  color: #ffffff;
}

.about-section h2 {
  color: #39ff14;
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
}

.about-section p {
  max-width: 800px;
  margin: 0 auto 20px auto;
  line-height: 1.6;
}

.img-placeholder {
  width: 100%;
  height: 200px;
  background-color: #444;
  color: #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  font-size: 16px;
  border: 2px dashed #39ff14;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .nav {
    float: none;
    text-align: center;
    margin-top: 10px;
  }

  .nav a {
    display: inline-block;
    margin: 10px 10px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .services h2, .about-section h2, .contact-form-section h2 {
    font-size: 28px;
  }
}
.services-page {
  padding: 60px 20px;
  background-color: #2a2a2a;
}

.services-page h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  color: #39ff14;
}

.service-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  background-color: #1e1e1e;
  padding: 20px;
  margin-bottom: 30px;
  border-left: 4px solid #39ff14;
  border-radius: 8px;
  gap: 20px;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card .img-placeholder {
  width: 200px;
  height: 150px;
  flex-shrink: 0;
  background-color: #444;
  color: #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border: 2px dashed #39ff14;
}

.service-text h3 {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 10px;
}

.service-text p {
  line-height: 1.5;
  color: #ccc;
}

/* Responsive tweaks */
@media screen and (max-width: 768px) {
  .service-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service-card .img-placeholder {
    width: 100%;
    height: 200px;
  }

  .service-text h3 {
    font-size: 22px;
  }
}
