:root {
  --primary-blue: #234078;
  --accent-yellow: #fece39;
  --white: #fff;
  --grey: #eaf0fa;
  --text: #212b38;
}
body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: var(--grey);
}
.main-header {
  background: var(--primary-blue);
  box-shadow: 0 2px 8px #25408422;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.logo {
  width: 34px;
  height: 34px;
  background: var(--white);
  border-radius: 7px;
  object-fit: contain;
  border: 2px solid var(--accent-yellow);
}
.brand-name {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-yellow);
}
nav {
  display: flex;
  gap: 2rem;
}
nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.15s;
}
nav a:hover {
  color: var(--accent-yellow);
}
.hero {
  background: linear-gradient(115deg, #254084 45%, #3185c5 100%);
  color: var(--white);
  padding: 2.2rem 0 2rem 0;
  box-shadow: 0 4px 18px #23407811;
  text-align: center;
}
.hero h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.hero p {
  font-size: 1.13rem;
  margin-bottom: 1.2rem;
  color: #fffde9;
}
.highlights {
  margin-bottom: 2rem;
}
.highlight {
  background: var(--accent-yellow);
  color: var(--primary-blue);
  font-weight: 600;
  display: inline-block;
  padding: 0.38rem 1.1rem;
  margin: 0 0.5rem 0.8rem 0;
  border-radius: 20px;
  font-size: 0.97rem;
  box-shadow: 0 2px 8px #fece3922;
}
.highlight.secondary {
  background: #fff;
  color: #234078;
  border: 2px solid var(--accent-yellow);
}
.cta-btn {
  display: inline-block;
  background: var(--accent-yellow);
  color: var(--primary-blue);
  padding: 0.8rem 1.6rem;
  border-radius: 22px;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 12px #25408433;
  transition: background 0.17s;
}
.cta-btn:hover {
  background: #fff;
  color: var(--accent-yellow);
  outline: 2px solid var(--accent-yellow);
}
.services {
  background: #fff;
  padding: 2.1rem 0 1.7rem 0;
}
.services h2 {
  color: var(--primary-blue);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 1.1rem;
}
.service-cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-around;
}
.card {
  background: var(--grey);
  border: 1px solid #d3e2f7;
  border-radius: 10px;
  padding: 1.08rem 1rem;
  min-width: 185px;
  max-width: 220px;
  margin-bottom: 1rem;
  flex: 1 1 180px;
  box-shadow: 0 2px 8px #25408411;
}
.card h3 {
  color: var(--primary-blue);
  margin-bottom: 0.54rem;
  font-weight: 700;
  font-size: 1.04rem;
}
.card p {
  color: #324063;
  font-size: 0.94rem;
}
.about {
  background: linear-gradient(92deg, #25408411 20%, #fece3909 100%);
  padding: 1.4rem 0 1.3rem 0;
}
.about h2 {
  color: var(--primary-blue);
  font-size: 1.12rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.about p {
  font-size: 0.98rem;
  color: #2a3360;
  max-width: 800px;
  margin: auto;
}
.footer {
  background: var(--primary-blue);
  color: var(--white);
  padding: 1.4rem 0 1rem 0;
  margin-top: 1.2rem;
}
.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.footer-contact h3 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}
.footer-contact a {
  color: var(--accent-yellow);
  text-decoration: underline;
  font-weight: 600;
  font-size: 0.95rem;
}
.footer-brand {
  font-size: 0.97rem;
}
@media (max-width: 900px) {
  .service-cards {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .footer-flex {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }
}
@media (max-width: 600px) {
  .container { width: 98%; }
  .brand-name { font-size: 1rem; }
  .logo { width: 24px; height: 24px; }
}