* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background: #f7fafc;
}


header,
footer {
  background: #0a0e27;
  color: #fff;
}

header {
  padding: 1rem 2rem;
}

header .brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

header .brand img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
}

header nav {
  margin-top: 0.5rem;
}

header nav a {
  color: #00d4aa;
  text-decoration: none;
  font-weight: 600;
  margin-right: 1rem;
}

header nav a:hover {
  text-decoration: underline;
}

main {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1.5rem;
}

section {
  margin-bottom: 2rem;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.6rem;
  color: #0a0e27;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.2rem;
  color: #334155;
  margin: 0.5rem 0;
}

p {
  margin: 0.5rem 0;
}

img {
  display: block;
  max-width: 100%;
  border-radius: 10px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.hero {
  background: linear-gradient(135deg, #0a0e27 0%, #004bb5 60%, #00d4aa 100%);
  color: #fff;
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.15; /* Almost transparent */
  pointer-events: none;
}

.hero-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.2rem;
}

.hero p {
  font-size: 1.05rem;
  opacity: 0.95;
}

.hero .cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.2rem;
  background: #00d4aa;
  color: #0a0e27;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

.hero .cta:hover {
  background: #00c09a;
}

.grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(10, 14, 39, 0.06);
}

.card ul,
.card ol {
  padding-left: 1.2rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(10, 14, 39, 0.05);
  margin-top: 0.5rem;
}

th,
td {
  padding: 0.8rem;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
}

thead th {
  background: #0a0e27;
  color: #fff;
}

form {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(10, 14, 39, 0.06);
}

label {
  display: block;
  margin-top: 0.8rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.7rem;
  margin-top: 0.4rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 1rem;
  background: #f8fafc;
}

button {
  margin-top: 1rem;
  padding: 0.8rem 1.2rem;
  border: none;
  border-radius: 8px;
  background: #004bb5;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

button:hover {
  background: #003a8d;
}

footer {
  padding: 1.2rem 2rem;
  margin-top: 2rem;
}

footer .links a {
  color: #00d4aa;
  margin-right: 1rem;
  text-decoration: none;
}

footer .links a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  header .brand h1 {
    font-size: 1.2rem;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  main {
    padding: 0 1rem;
  }
}

/* Service Page Updates */
.service-list .category {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.service-list h3 {
  color: #004bb5;
  border-bottom: 2px solid #00d4aa;
  padding-bottom: 0.5rem;
  margin-top: 0;
}

.service-list ul {
  list-style: none;
  padding: 0;
}

.service-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-list li:last-child {
  border-bottom: none;
}

.price {
  background: #e0f2fe;
  color: #0369a1;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.3rem 0.6rem;
  border-radius: 20px;
  white-space: nowrap;
}