body {
  font-family: 'Roboto', Arial, sans-serif;
  margin: 0;
  background: #f7f9fb;
  color: #222;
}

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

.navbar {
  background: #1a365d;
  color: #fff;
  padding: 1rem 0;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #4fd1c5;
}

.hero {
  background: linear-gradient(120deg, #1a365d 60%, #4fd1c5 100%);
  color: #fff;
  padding: 5rem 0 3rem 0;
  text-align: center;
}
.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
.btn-primary {
  background: #4fd1c5;
  color: #1a365d;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.btn-primary:hover {
  background: #1a365d;
  color: #fff;
}

.services {
  padding: 4rem 0 2rem 0;
  background: #fff;
}
.services h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #1a365d;
}
.services-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.service-card {
  background: #f7f9fb;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(26,54,93,0.08);
  padding: 2rem;
  flex: 1 1 250px;
  max-width: 320px;
  min-width: 220px;
  text-align: center;
  margin-bottom: 2rem;
}
.service-card h3 {
  color: #1a365d;
  margin-bottom: 1rem;
}

.about {
  padding: 4rem 0;
  background: #f7f9fb;
}
.about-content {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
}
.about-text {
  flex: 3;
}
.about-image {
  flex: 1;
  min-width: 100px;
  max-width: 160px;
  margin-top: 0.5rem;
  opacity: 0.85;
  align-self: flex-start;
}
.about-image img {
  width: 100%;
  max-width: 120px;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(26,54,93,0.06);
  display: block;
  margin: 0 auto;
}
.owner-info {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  color: #1a365d;
  font-style: italic;
  background: #e6f7fa;
  padding: 0.75rem 1.25rem;
  border-left: 4px solid #4fd1c5;
  border-radius: 6px;
  display: inline-block;
}

.contact-cta {
  background: #1a365d;
  color: #fff;
  text-align: center;
  padding: 3rem 0;
}
.contact-cta h2 {
  margin-bottom: 1.5rem;
}

.footer-content {
  text-align: center;
  padding: 1.5rem 0;
  color: #888;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .services-grid, .about-content {
    flex-direction: column;
    align-items: center;
  }
  .about-image {
    margin: 1rem 0 0 0;
    align-self: flex-start;
  }
} 