* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f7fb;
  color: #0b1f33;
  line-height: 1.6;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e3e8ef;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
    height: 65px;
    width: auto;
    display: block;
}

.site-nav {
  display: flex;
  gap: 22px;
}

.site-nav a {
  color: #0b1f33;
  text-decoration: none;
  font-weight: 600;
}

.site-nav a:hover {
  color: #1677d2;
}

.site-nav a[aria-current="page"] {
  color: #1677d2;
}

.hero {
  padding: 90px 0;
  background: linear-gradient(135deg, #0b1f33, #123f68 60%, #0f5f66);
  color: #ffffff;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
}

.trust-panel ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
}

.trust-panel li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  color: #dbeafe;
}

.trust-panel li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #8ecbff;
  font-weight: 800;
}

.panel-link {
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.panel-link:hover {
  color: #8ecbff;
}

.eyebrow {
  color: #8ecbff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 1.05;
  margin: 10px 0 20px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}

.hero-text {
  max-width: 650px;
  font-size: 1.15rem;
  color: #dbeafe;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  border: 0;
}

.button.primary {
  background: #1677d2;
  color: #ffffff;
}

.button.secondary {
  background: #ffffff;
  color: #0b1f33;
}

.button.bordered {
  border: 1px solid #c5d3e3;
}

.text-link {
  color: #1677d2;
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  color: #0f5f66;
}

.hero-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 30px;
}

.trust-section,
.process-section,
.about-preview,
.cta-section {
  padding: 70px 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.info-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(11,31,51,0.08);
}

.info-card h3 {
  margin-top: 0;
  color: #123f68;
}

.process-section {
  background: #ffffff;
}

.process-list {
  display: grid;
  gap: 12px;
  padding-left: 22px;
  font-weight: 600;
}

.narrow {
  max-width: 800px;
}

.cta-section {
  background: #eaf4ff;
  text-align: center;
}

.page-hero {
  padding: 82px 0;
  background: linear-gradient(135deg, #0b1f33, #123f68 60%, #0f5f66);
  color: #ffffff;
}

.page-hero p {
  color: #dbeafe;
  font-size: 1.12rem;
}

.content-section {
  padding: 70px 0;
}

.alt-section {
  background: #ffffff;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
  gap: 36px;
  align-items: start;
}

.detail-panel {
  background: #eaf4ff;
  border-left: 4px solid #16806f;
  border-radius: 8px;
  padding: 28px;
}

.detail-panel h2 {
  margin-top: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.muted {
  color: #66778c;
}

.site-footer{

    background:#081523;
    color:white;

}

.footer-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:40px;

    padding:60px 0;

}

.footer-column h3{

    margin-top:0;
    margin-bottom:18px;

}

.footer-column p{

    color:#d4dce6;

}

.footer-column ul{

    list-style:none;
    padding:0;
    margin:0;

}

.footer-column li{

    margin-bottom:12px;

}

.footer-column a{

    color:#d4dce6;
    text-decoration:none;

}

.footer-column a:hover{

    color:#55a7ff;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    padding:25px 0;

}

.footer-bottom-inner{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

    color:#b8c4d3;

}

@media (max-width: 800px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-inner,
  .card-grid,
  .split-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .page-hero {
    padding: 60px 0;
  }

  .footer-bottom-inner {
    align-items: flex-start;
  }
}
