* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #0b1f33;
  background: #ffffff;
  line-height: 1.6;
}


.top-bar span,
.top-bar a {
  color: #1fb56f;
  font-weight: 600;
  text-decoration: none;
}

.top-bar a:hover {
  text-decoration: underline;
}

.header {
  background: #ffffff;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header nav a {
  color: #08324f;
  text-decoration: none;
  margin-left: 20px;
  font-size: 14px;
  font-weight: 600;
}

.header nav a:hover {
  text-decoration: underline;
}

.header .phone a {
  color: #1fb56f;
  font-weight: 600;
  text-decoration: none;
}

.logo .trinity {
  color: #333333;
  font-weight: 700;
  margin-right: 6px;   /* spacing */
}

.logo .decon {
  color: #1fb56f;
  font-weight: 700;
}


/* Hero */
.hero {
  background: linear-gradient(
      rgba(8, 50, 79, 0.85),
      rgba(8, 50, 79, 0.85)
    ),
    url("/static/hero.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 80px 20px;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

/* Buttons */
.btn-primary {
  background: #1fb56f;
  color: #ffffff;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.btn-primary:hover {
  background: #18965c;
}

/* Sections */
section {
  padding: 60px 20px;
}

section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #08324f;
}

/* Services */
.services {
  background: #f4f7fa;
}

.service-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}



.card {
  background: #ffffff;
  padding: 30px;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-weight: bold;
}

/* About */
.about {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Contact */
section.contact {
  background: #08324f;
  color: #ffffff;
  padding: 80px 20px;
}

.contact h2 {
  color: #ffffff;
}

.contact form {
  max-width: 500px;
  margin: 0 auto;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 4px;
  border: none;
}

.contact button {
  width: 100%;
  padding: 14px;
  background: #1fb56f;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

.contact button:hover {
  background: #18965c;
}

/* Footer */
.footer {
  background: #06263d;
  color: #ffffff;
  padding: 30px 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer a {
  color: #1fb56f;
  text-decoration: none;
}

.card {
  cursor: default;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.services-subline {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
  color: #555;
  font-size: 15px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 44px;
  width: auto;
  margin-right: 0px;
}

.logo span {
  margin: 0;
  padding: 0;
  color: #1fb56f;
  font-weight: 700;
}

.thank-you-page {
  min-height: 100vh;
  background: #0b2f45;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.thank-you-container {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 48px 32px;
  border-radius: 12px;
  max-width: 420px;
  width: 90%;
}

.thank-you-container h1 {
  margin-bottom: 12px;
  font-size: 28px;
  
}

.thank-you-container p {
  margin-bottom: 28px;
  font-size: 16px;
  opacity: 0.9;
  text-align: left;
  line-height: 1.7;
}

.insurance-note {
  margin-top: 16px;
  font-size: 14px;
  opacity: 0.85;
}

.services-disclaimer {
  text-align: center;
  margin: 3rem auto 0;
  max-width: 900px;
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-photos {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 24px;
}

.about-photo {
  width: 160px;
  height: 220px;
  object-fit: cover;    
  border-radius: 8px;
}

@media (max-width: 768px) {
  .about-photos {
    flex-direction: column;
    align-items: center;
  }

  .about-photo {
    width: 140px;
    height: 190px;
  }
}

.about-text {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-text p {
  margin-bottom: 8px;
  line-height: 1.5;
}

.certs-block {
  text-align: center;
  margin-top: 60px;
}

.certs-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
}

.certs-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cert-badge {
  width: 130px;
  height: 130px;
  object-fit: contain;
  background: #ffffff;
  padding: 12px;
  border-radius: 8px;
}

.blog-container {
    max-width: 1100px;
    margin: 80px auto;
    padding: 20px;
}

.blog-title {
    font-size: 36px;
    margin-bottom: 30px;
}

.categories {
    text-align: center;
    margin-bottom: 40px;
}

.cat-btn {
    border: 1px solid #2fa866;
    background: white;
    color: #2fa866;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    white-space: nowrap;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
    gap: 30px;
}

.blog-card {
    display: block;
    text-decoration: none;
    color: black;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
    transition: transform 0.15s;
}

.blog-card:hover {
    transform: translateY(-4px);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    text-align: center;
}

.blog-heading {
    font-size: 20px;
    margin-top: 8px;
}

.blog-excerpt {
    color: #555;
    font-size: 14px;
}

.tag {
    display: inline-block;
    font-size: 12px;
    border: 1px solid #2fa866;
    color: #2fa866;
    padding: 4px 10px;
    border-radius: 14px;
    margin-top: 12px;
    margin-bottom: 10px;
}

.blog-hero {
    background: #365A73;
    color: white;
    padding: 90px 20px;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: auto;
}

.hero-title {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    opacity: 0.9;
}

.article-hero{
background: #365A73;
color:white;
padding:60px 20px;
margin-bottom:40px;
}

.hero-inner{
max-width:1100px;
margin:auto;
display:flex;
gap:40px;
align-items:center;
}

.hero-image{
width:280px;
border-radius:12px;
}

.article-title{
font-size:36px;
margin-bottom:10px;
}

.article-content {
    max-width: 750px;
    margin: 40px auto;
    line-height: 1.7;
}

.hero-category a {
    color: white;
    text-decoration: none;
}

.hero-category a:hover {
    text-decoration: underline;
}

.hero-summary{
max-width:600px;
opacity:0.9;
}

.back-link {
    max-width: 750px;
    margin: 40px auto;
}

h1,h2,h3{
color:var(--navy);
}

.hero h1{
color:white;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0;
}

.hero {
  background:#0f3e63;
  color:white;
  text-align:center;
  padding:80px 0 50px;
}

.two-col img{
max-width:480px;
}

.card{
background:var(--card);
padding:30px;
border-radius:var(--radius);
box-shadow:var(--shadow);
text-align:left;
}

.card h2{
margin-top:0;
margin-bottom:22px;
text-align:left;
}

.card ul{
list-style:none;
padding:0;
margin:0;
}

.card li{
display:flex;
align-items:center;
gap:10px;
margin-bottom:12px;
}

.card li::before{
content:"✓";
color:var(--green);
font-weight:bold;
font-size:16px;
}

.info-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:26px;
margin-top:30px;
align-items:start;
}

.hero-grid img{
width:100%;
height:360px;
object-fit:cover;
border-radius:20px;
margin-top:18px;
}

.hero-grid{
align-items:center;
}

.blog-card img{
width:100%;
height:260px;
object-fit:cover;
object-position:center 30%;
}

.service-card{
display:block;
overflow:hidden;
text-decoration:none;
padding:0;
border-radius:14px;
background:#fff;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
transition:0.25s ease;
}

.service-card:hover{
transform:translateY(-6px);
box-shadow:0 14px 28px rgba(0,0,0,0.12);
}

.service-card img{
width:100%;
height:190px;
object-fit:cover;
display:block;
}

.service-card span{
display:block;
padding:16px;
font-weight:700;
font-size:20px;
color:#073b63;
text-align:center;
}