:root {
  --orange: #FF7F00;
  --darkblue: #172A46;
  --white: #fff;
  --lightgray: #f8f9fa;
  --gray: #e2e6ea;
}

body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--lightgray);
  color: var(--darkblue);
}

header {
  background: var(--darkblue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  color: var(--orange);
  letter-spacing: 2px;
}

nav a {
  color: var(--white);
  margin: 0 16px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
nav a:hover {
  color: var(--orange);
}

.cta-btn {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 10px 30px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(23,42,70,0.08);
  transition: background 0.2s;
}
.cta-btn:hover {
  background: #ff9800;
}

.hero {
  background: linear-gradient(100deg, var(--darkblue) 60%, rgba(255,127,0,0.75)), url('https://images.unsplash.com/photo-1464983953574-0892a716854b?auto=format&fit=crop&w=1280&q=80') center/cover no-repeat;
  color: var(--white);
  padding: 80px 0 60px 0;
  text-align: center;
  position: relative;
}
.hero h1 {
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 18px;
  line-height: 1.15;
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 32px;
}
.hero .cta-btn {
  font-size: 1.2rem;
  padding: 14px 38px;
}

.section {
  padding: 56px 20px 36px 20px;
  max-width: 1050px;
  margin: 0 auto;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
  margin-top: 32px;
}
.service-card {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(23,42,70,0.07);
  padding: 32px 22px;
  text-align: center;
  border-bottom: 4px solid var(--orange);
}
.service-icon img {
  width: 54px;
  height: 54px;
  margin: 0 auto 18px auto;
  display: block;
  object-fit: contain;
}
.service-title {
  font-size: 1.18rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.service-desc {
  color: #49596a;
  font-size: 1rem;
}

footer {
  background: var(--darkblue);
  color: var(--white);
  text-align: center;
  padding: 22px 0;
  font-size: 1.08rem;
}
.footer-links a {
  color: var(--orange);
  text-decoration: none;
  margin-left: 12px;
}
@media (max-width: 700px) {
  header {
    flex-direction: column;
    padding: 14px 10px;
  }
  .section {
    padding: 32px 5px 20px 5px;
  }
}
