.service-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
    display: block;
    margin: 20px auto;
}

.service-actions {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.whatsapp-btn {
  background-color: #25D366;
  color: white;
  padding: 10px 18px;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
}

.whatsapp-btn:hover {
  background-color: #1ebe5d;
}

.back-link {
  display: inline-block;
  margin-top: 30px;
  text-decoration: none;
  color: #0b1c2d;
  font-weight: 500;
}
.main-header {
  background: linear-gradient(to right, #020d1f, #071c35);
  padding: 15px 30px;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-area img {
  height: 60px;
  background: white;
  padding: 8px;
  border-radius: 10px;
}

.company-text h1 {
  color: white;
  font-size: 22px;
  margin: 0;
}

.company-text p {
  color: #9ec9ff;
  font-size: 13px;
  margin: 2px 0 0;
}

.nav-menu {
  background: rgba(0, 0, 0, 0.35);
  padding: 10px 20px;
  border-radius: 10px;
}

.nav-menu a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 500;
}

.nav-menu a:hover {
  color: #ff4d4d;
}

/* Hamburger icon */
.hamburger {
  display: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
}
/* Mobile menu */
@media (max-width: 768px) {

  .hamburger {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 80px;
    right: 20px;
    background: #071c35;
    border-radius: 10px;
    width: 200px;
    flex-direction: column;
    padding: 15px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  }

  .nav-menu a {
    display: block;
    padding: 12px 20px;
    margin: 0;
    color: white;
  }

  .nav-menu a:hover {
    background: rgba(255,255,255,0.1);
  }

  .nav-menu.active {
    display: flex;
  }
}
/* Footer */
.site-footer {
  background: #071c35;
  color: #cfd9e6;
  margin-top: 60px;
  font-size: 14px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h3,
.footer-col h4 {
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-col p {
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-whatsapp {
  display: inline-block;
  margin-top: 15px;
  background: #25D366;
  color: white;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}

.footer-whatsapp:hover {
  background: #1ebe5d;
}

.footer-bottom {
  background: #020d1f;
  text-align: center;
  padding: 15px;
  font-size: 13px;
  color: #9ec9ff;
}

.back-service-wrapper {
  margin-top: 40px;
}

.back-service-btn {
  display: inline-block;
  background: #071c35;
  color: white;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.2s ease;
}

.back-service-btn:hover {
  background: #0b2a55;
  transform: translateX(-3px);
}
