body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #e0e7ff 0%, #f4f4f4 100%);
  color: #0f0f21;
  min-height: 100vh;
}

header {
  background: linear-gradient(90deg, #2563eb 0%, #1f2937 100%);
  color: white;
  padding: 32px 20px 24px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08);

  position: relative;
  z-index: 2;
}

.logo-header {
  height: 90px;
  width: auto;
  border-radius: 18px;
  margin-right: 24px;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.15);
}

nav {
  background: #111827ee;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

nav a {
  color: #e0e7ff;
  padding: 15px 28px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  transition:
    background 0.2s,
    color 0.2s;
}

nav a:hover {
  background: #2563eb;
  color: #fff;
  border-radius: 8px;
}

.hero {
  background:
    linear-gradient(120deg, #2563ebcc 0%, #1f2937cc 100%),
    url("https://images.unsplash.com/photo-1515923162037-7c1f4b6c60b3")
      center/cover no-repeat;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 40px 20px 30px 20px;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.1);
  font-family:
    "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
  font-weight: 700;
  text-shadow: 0 2px 8px #1f2937cc;
  letter-spacing: 1px;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 28px;
  color: #e0e7ff;
  text-shadow: 0 1px 4px #1f2937cc;
}

.container {
  padding: 48px 20px 32px 20px;
  max-width: 1100px;
  margin: 32px auto 0 auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.07);
  position: relative;
  z-index: 1;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.card {
  background: linear-gradient(120deg, #e0e7ff 0%, #fff 100%);
  padding: 28px 20px 24px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  font-size: 1.08rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  min-height: 120px;
  border: 1.5px solid #dbeafe;
  animation: fadeInUp 0.7s;
}

.card::before {
  content: "";
  display: block;
  position: absolute;
  top: -30px;
  right: -30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2563eb33 0%, #fff0 100%);
  border-radius: 50%;
  z-index: 0;
}

.card:hover {
  transform: translateY(-6px) scale(1.045);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.13);
  border-color: #2563eb;
}

.checklist {
  margin-top: 20px;
  line-height: 1.8;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 500px;
  margin: 0 auto;
  background: #f1f5f9;
  padding: 24px 18px 18px 18px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.06);
}

input,
textarea {
  padding: 12px;
  border-radius: 7px;
  border: 1.5px solid #2563eb33;
  font-size: 1rem;
  background: #fff;
  transition: border 0.2s;
}

input:focus,
textarea:focus {
  border: 1.5px solid #2563eb;
  outline: none;
}

iframe {
  width: 100%;
  height: 300px;
  border: none;
  margin-top: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
}

button {
  background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
  transition:
    background 0.2s,
    transform 0.2s;
  margin-top: 8px;
}

button:hover {
  background: linear-gradient(90deg, #1d4ed8 0%, #2563eb 100%);
  transform: translateY(-2px) scale(1.03);
}

.call-btn {
  display: inline-block;
  margin-top: 15px;
  background: linear-gradient(90deg, #16a34a 0%, #22d3ee 100%);
  padding: 14px 28px;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(16, 163, 74, 0.1);
  transition:
    background 0.2s,
    transform 0.2s;
}

.call-btn:hover {
  background: linear-gradient(90deg, #22d3ee 0%, #16a34a 100%);
  transform: translateY(-2px) scale(1.03);
}

footer {
  background: linear-gradient(90deg, #1f2937 0%, #2563eb 100%);
  color: #e0e7ff;
  text-align: center;
  padding: 28px 20px 24px 20px;
  margin-top: 48px;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  box-shadow: 0 -4px 16px rgba(37, 99, 235, 0.08);
  font-size: 1.08rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
