* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #5f676c;
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: #1ebbf0;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.topbar {
  background: #242e35;
  color: #ffffff;
  font-size: 14px;
}

.topbar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
  padding-top: 10px;
  padding-bottom: 10px;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #ececec;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.logo img {
  width: 260px;
  max-width: 100%;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
}

.main-nav a {
  color: #333333;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
}

.hero {
  background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
  padding: 36px 0 18px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  color: #242e35;
  font-size: 40px;
  line-height: 1.15;
  margin: 0 0 14px;
}

.hero p.lead {
  font-size: 18px;
  margin: 0 0 20px;
  color: #5f676c;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.badge {
  background: #1ebbf0;
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
}

.section {
  padding: 50px 0;
}

.section-title {
  text-align: center;
  color: #333333;
  font-size: 30px;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.section-subtitle {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 30px;
}

.cards-3,
.cards-4 {
  display: grid;
  gap: 26px;
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cards-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: #ffffff;
  border: 1px solid #ebebeb;
  box-shadow: 0 10px 22px rgba(0,0,0,0.05);
  overflow: hidden;
}

.card-body {
  padding: 20px;
}

.card h2,
.card h3 {
  color: #333333;
  margin-top: 0;
  margin-bottom: 12px;
}

.card p {
  margin-top: 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.button {
  display: inline-block;
  background: #1ebbf0;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
}

.button.alt {
  background: #242e35;
}

.page-banner {
  background: #f6f6f6;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  padding: 24px 0;
  text-align: center;
}

.page-banner h1 {
  margin: 0;
  color: #333333;
  font-size: 34px;
}

.content-wrap {
  padding: 45px 0 60px;
}

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.content-box h2,
.content-box h3 {
  color: #333333;
}

.content-box ul {
  padding-left: 20px;
}

.logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
  margin-top: 26px;
}

.logos-row img {
  max-height: 88px;
  width: auto;
}

.footer {
  background: #242e35;
  color: #ffffff;
  margin-top: 30px;
}

.footer-main {
  padding: 36px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.footer h4 {
  margin-top: 0;
  color: #ffffff;
  font-size: 18px;
}

.footer .muted {
  color: #8f9294;
}

.footer a {
  color: #ffffff;
}

.bottom-bar {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 14px 0;
  font-size: 14px;
  color: #d8d8d8;
}

.legal-text p {
  margin: 0 0 16px;
}

.center {
  text-align: center;
}

@media (max-width: 980px) {
  .hero-grid,
  .two-col,
  .cards-3,
  .cards-4,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-header .container,
  .topbar .container {
    justify-content: center;
  }

  .main-nav {
    justify-content: center;
  }

  .hero h1,
  .page-banner h1 {
    font-size: 30px;
  }
}
