/*
Theme Name: Assure Search Partners
Author: Assure Search Partners
Version: 1.1
Description: Professional WordPress theme for an insurance recruitment agency.
License: GPLv2 or later
*/

:root{
  --navy:#0B1F3F;
  --navy-dark:#0f172a;
  --grey:#6b7280;
  --light:#f5f7fa;
  --gold:#CFAF66;
  --blue:#1d4ed8;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:#111827;
  line-height:1.65;
  background:#fff;
}

a{color:var(--blue);text-decoration:none}
a:hover{text-decoration:underline}

header{
  background:rgba(11,31,63,.96);
  position:sticky;
  top:0;
  z-index:999;
}

.navwrap{
  max-width:1100px;
  margin:auto;
  padding:16px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.brand{
  font-weight:700;
  letter-spacing:.2px;
  color:#fff;
}

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

nav a{
  color:#fff;
  font-weight:500;
}

.hero{
  background:linear-gradient(rgba(11,31,63,.65),rgba(11,31,63,.65));
  padding:110px 20px;
  text-align:center;
  color:#fff;
}

.hero h1{
  max-width:900px;
  margin:0 auto 14px;
  font-size:38px;
}

.hero p{
  max-width:720px;
  margin:0 auto 24px;
  color:#e5e7eb;
}

.btn{
  display:inline-block;
  background:var(--gold);
  color:var(--navy);
  padding:12px 22px;
  border-radius:6px;
  font-weight:700;
}

section{
  max-width:1100px;
  margin:auto;
  padding:70px 20px;
}

.grid{
  display:grid;
  gap:22px;
}

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

.card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:10px;
  padding:22px;
  box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.muted{color:var(--grey)}

.job-card{
  border:1px solid #e5e7eb;
  border-radius:10px;
  padding:18px;
  margin-bottom:14px;
}

form input, form textarea{
  width:100%;
  padding:12px;
  border:1px solid #d1d5db;
  border-radius:8px;
  margin-bottom:12px;
}

label.consent{
  display:block;
  font-size:14px;
  margin:10px 0 18px;
  color:#374151;
}

button{
  padding:12px 18px;
  border:none;
  border-radius:8px;
  background:var(--navy);
  color:#fff;
  font-weight:700;
  cursor:pointer;
}

footer{
  background:var(--navy-dark);
  color:#fff;
}

.footerwrap{
  max-width:1100px;
  margin:auto;
  padding:28px 20px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
}

@media(max-width:900px){
  .grid-3{grid-template-columns:1fr}
  .hero h1{font-size:30px}
}
