* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #0b1f33;
  background: #ffffff;
  line-height: 1.6;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 24px;
  background: #0b3a5a;
  font-size: 14px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-bar span {
  color: #ffffff;
}

.top-bar a {
  color: #27c46b;
  font-weight: 600;
  text-decoration: none;
}

.top-bar a:hover {
  text-decoration: underline;
}

/* Header */
.header {
  background: #08324f;
  color: #ffffff;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: bold;
  letter-spacing: 1px;
}

.header nav a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 20px;
  font-size: 14px;
}

.header nav a:hover {
  text-decoration: underline;
}

/* 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;
}

.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;
}
