body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  background: #f8fafd;
  color: #222;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 32px 40px 32px; /* top, right, bottom, left */
  box-sizing: border-box;
}

section {
  margin-bottom: 48px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(44,83,100,0.04);
  padding: 32px 24px;
}

.logo-bar {
  background: #fff;
  box-shadow: 0 2px 8px rgba(44,83,100,0.04);
  padding: 16px 0;
}

.logo-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 64px;
  margin-right: 18px;
}

.company-name {
  font-size: 2em;
  font-weight: 700;
  color: #1a2a3a;
  margin-right: auto;
  margin-left: 8px;
}

nav {
  margin-left: 36px;
}

nav a {
  color: #2c5364;
  margin-left: 24px;
  text-decoration: none;
  font-weight: 500;
}

.hero-header {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0; left: 0;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 40, 70, 0.45);
  color: #fff;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding-bottom: 32px;
}

.hero-content p {
  margin: 0.3em 0;
  font-size: 1.4em;
}

.hero-content .subtitle {
  font-size: 1.1em;
  color: #b3e5fc;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 32px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(44,83,100,0.08);
  padding: 24px;
  min-width: 220px;
  max-width: 320px;
  margin: 0 auto;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .logo-flex {
    flex-direction: column;
    align-items: flex-start;
  }
  .company-name {
    font-size: 1.2em;
    margin-bottom: 8px;
  }
  .hero-header {
    height: 200px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .container, section {
    padding: 20px 8px;
  }
}