body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #fff;
  color: #222;
  margin: 0;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-header {
  background: #fff;
  border-bottom: 1px solid #e5e8f0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}

.logo-text {
  font-size: 1.7em;
  font-weight: 700;
  color: #1a2633;
  letter-spacing: 1px;
  font-family: 'Montserrat', Arial, sans-serif;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.nav-list li a {
  text-decoration: none;
  color: #1a2633;
  font-weight: 500;
  font-size: 1em;
  transition: color 0.2s;
  padding: 2px 0;
  border-bottom: 2px solid transparent;
}

.nav-list li a:hover {
  color: #2d5a8c;
  border-bottom: 2px solid #2d5a8c;
}

.hero {
  padding: 70px 0 50px 0;
  text-align: center;
  background: linear-gradient(120deg, #f7fafd 0%, #fff 100%);
}

.hero-title {
  font-size: 2em;
  font-weight: 700;
  color: #1a2633;
  margin-bottom: 14px;
}

.hero-subtitle-small {
  font-size: 1.08em;
  color: #5d6a7a;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-button {
  background: #1a2633;
  color: #fff;
  padding: 13px 30px;
  border-radius: 28px;
  font-size: 1.08em;
  border: none;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(26,38,51,0.07);
}

.cta-button:hover,
.cta-button:focus {
  background: #2d5a8c;
  color: #fff;
}

.cta-button.secondary {
  background: #fff;
  color: #1a2633;
  border: 1.5px solid #1a2633;
  font-weight: 500;
}

.cta-button.secondary:hover,
.cta-button.secondary:focus {
  background: #f2f5fa;
  color: #2d5a8c;
  border-color: #2d5a8c;
}

.services {
  padding: 60px 0 50px 0;
  background: #fff;
}

.services h2 {
  color: #1a2633;
  font-size: 2em;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
}

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

.service-card {
  background: #f7fafd;
  border: 1px solid #e5e8f0;
  border-radius: 14px;
  padding: 32px 22px;
  box-shadow: 0 2px 6px rgba(26,38,51,0.04);
  text-align: left;
  min-height: 180px;
}

.service-card h3 {
  color: #2d5a8c;
  font-size: 1.15em;
  margin-bottom: 12px;
}

.service-card p {
  color: #1a2633;
  font-size: 1em;
  margin: 0;
}

.about {
  padding: 60px 0 40px 0;
  background: #f7fafd;
}

.about h2 {
  color: #1a2633;
  font-size: 2em;
  margin-bottom: 20px;
  font-weight: 700;
}

/* Who We Work With Section */
.clients {
  padding: 60px 0 40px 0;
  background: #fff;
  text-align: center;
}

.clients h2 {
  color: #1a2633;
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 18px;
}

.clients-description {
  font-size: 1.12em;
  color: #2d5a8c;
  max-width: 650px;
  margin: 0 auto 20px auto;
}

.clients-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.clients-list li {
  background: #f7fafd;
  border: 1px solid #e5e8f0;
  border-radius: 20px;
  padding: 8px 22px;
  color: #1a2633;
  font-size: 1em;
  margin-bottom: 8px;
}

.clients-note {
  color: #5d6a7a;
  font-size: 1em;
  margin-bottom: 28px;
}

.references {
  margin-top: 28px;
}

.references h3 {
  color: #2d5a8c;
  font-size: 1.15em;
  font-weight: 600;
  margin-bottom: 12px;
}

.references-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 500px;
}

.references-list li {
  color: #1a2633;
  font-size: 1em;
  margin-bottom: 6px;
  text-align: left;
  padding-left: 0;
}

.contact {
  padding: 60px 0 40px 0;
  background: #f7fafd;
  text-align: center;
}

.contact h2 {
  color: #1a2633;
  font-size: 2em;
  margin-bottom: 20px;
  font-weight: 700;
}

.contact p {
  font-size: 1.08em;
  color: #2d5a8c;
}

.contact a {
  color: #2d5a8c;
  text-decoration: underline;
  transition: color 0.2s;
}

.contact a:hover {
  color: #1a2633;
}

.footer {
  background: #f7fafd;
  border-top: 1px solid #e5e8f0;
  padding: 32px 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-logo-text {
  font-size: 1.25em;
  font-weight: 700;
  color: #1a2633;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.footer-left p {
  color: #2d5a8c;
  font-size: 0.98em;
  margin: 2px 0;
}

.footer-nav {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.footer-nav li a {
  color: #1a2633;
  text-decoration: none;
  font-size: 1em;
  transition: color 0.2s;
  padding: 2px 0;
  border-bottom: 2px solid transparent;
}

.footer-nav li a:hover {
  color: #2d5a8c;
  border-bottom: 2px solid #2d5a8c;
}

@media (max-width: 800px) {
  .header-container,
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  .clients-list {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
