body {
  font-family: 'Inter', Arial, sans-serif;
  background: #171923;
  color: #e4e7ef;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

main {
  width: 100%;
  margin: 0 auto;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem 4rem 1rem;
  background: linear-gradient(to bottom, #191e2e 75%, #23283a 100%);
}
.hero h1 {
  font-weight: 700;
  font-size: 2.3rem;
  margin-bottom: 1rem;
  color: #4f8cff;
  text-align: center;
  letter-spacing: 1px;
}
.hero .subtitle {
  font-size: 1.2rem;
  color: #b8c0e2;
  margin-bottom: 2rem;
  text-align: center;
}
.cta {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  margin-bottom: 0.4rem;
  margin-right: 0.2rem;
  text-decoration: none;
  box-shadow: 0 2px 8px #0e1016ad;
  transition: background 0.2s;
}
.cta:hover {
  background: #1d4ed8;
}
.cta.outline {
  background: #181c27;
  color: #90aaff;
  border: 2px solid #253a7a;
  margin-top: 0.6rem;
}
.cta.outline:hover {
  background: #23243a;
}

.section {
  padding: 3.5rem 1rem;
  margin: 0 auto;
  max-width: 900px;
}
.section h2 {
  font-size: 1.5rem;
  color: #66aaff;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: left;
}
.about .details {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0 0;
  color: #b8c0e2;
  line-height: 1.85;
}
.about .details a {
  color: #98b6ff;
  text-decoration: underline;
}

.services {
  background: #22243a;
  border-radius: 1.2rem;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}
.service {
  background: #181c27;
  border-radius: 0.8rem;
  padding: 1.35rem;
  border: 1px solid #232954;
  box-shadow: 0 1px 6px #13152267;
}
.service h3 {
  color: #5eb6ff;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
}
.service p {
  color: #b8c0e2;
  font-size: .98rem;
}

.gallery {
  padding-bottom: 2.8rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}
.gallery-grid img {
  width: 100%;
  border-radius: 0.9rem;
  height: 220px;
  object-fit: cover;
  box-shadow: 0 2px 20px 0 #0e1016bb;
}

.contact {
  background: #1a1c2e;
  border-radius: 0.9rem;
  box-shadow: 0 1px 8px #10121a77;
  text-align: center;
  padding-bottom: 2.2rem;
}
.contact p {
  color: #b8c0e2;
}

.footer {
  background: #161724;
  color: #b8c0e2;
  padding: 2rem 1rem 1.2rem 1rem;
  text-align: center;
  border-top: 1px solid #272740;
  margin-top: 3rem;
  border-radius: 0 0 1.2rem 1.2rem;
}
.footer a {
  color: #6eadec;
}

/* Responsive Styles */
@media (min-width: 600px) {
  .hero h1 { font-size: 2.8rem; }
  .section { padding-left: 2.2rem; padding-right: 2.2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .hero h1 { font-size: 3.3rem; }
  .section { max-width: 1050px; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
