.service-hero {
  height: 60vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 80px;
}

.service-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 11, 26, 0.8), rgba(0, 11, 26, 0.95));
}

.service-header-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.service-header-content h1 {
  font-size: 3rem;
  color: #00ffff;
  margin-bottom: 15px;
}

#s-subtitle {
  color: #ccc;
  font-size: 1.2rem;
}

.service-body {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-overview-card {
  height: auto;
  text-align: left;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#s-overview-title {
  color: #d4af37;
  margin-bottom: 20px;
}

#s-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

#s-benefits-title {
  color: #00ffff;
  margin-top: 40px;
  margin-bottom: 20px;
}

.benefits-list {
  list-style: none;
  margin-top: 30px;
}

.benefits-list li {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.2);
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.benefits-list i {
  color: #d4af37;
  font-size: 1.2rem;
}

.service-form {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  margin-top: 50px;
}

#s-request-title {
  margin-bottom: 20px;
  color: #fff;
}

.service-form input,
.service-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 10px;
}

#s-subject {
  color: #00ffff;
  background: rgba(0, 255, 255, 0.05);
}

#s-submit-btn {
  width: 100%;
  border: none;
  cursor: pointer;
}
