@font-face {
  font-family: 'BebasNeuePro-Bold';
  src: url('file:///C:/Users/user/Downloads/OnlineWebFonts_COM_5c261742144c0baae597e5d70f2e7df2/BebasNeuePro-Bold/Web Fonts/BebasNeuePro-Bold.woff2') format('woff2'),
       url('file:///C:/Users/user/Downloads/OnlineWebFonts_COM_5c261742144c0baae597e5d70f2e7df2/BebasNeuePro-Bold/Web Fonts/BebasNeuePro-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'BebasNeuePro-Bold', sans-serif;
  background: #ffffff;
  color: #222222;
  min-width: 320px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'BebasNeuePro-Bold', sans-serif;
  font-weight: bold;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 0.75rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.5rem;
  }
}

.text-center {
  text-align: center;
}

.section {
  padding: 3.5rem 0;
}

@media (max-width: 768px) {
  .section {
    padding: 2.5rem 0;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 2rem 0;
  }
}

/* Top bar / Nav */

.top-bar {
  background: #214869;
  color: #ffffff;
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 800;
  font-size: 1.4rem;
  font-family: 'BebasNeuePro-Bold', sans-serif;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-weight: 600;
  font-family: 'BebasNeuePro-Bold', sans-serif;
}

.phone-number {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ffffff;
  background: #27ae60;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-family: 'BebasNeuePro-Bold', sans-serif;
}

.nav-links a {
  color: #ffffff;
}

.nav-links .btn.small {
  font-size: 0.85rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  border: none;
  background: #214869;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.1s ease;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.25);
  font-family: 'BebasNeuePro-Bold', sans-serif;
}

.phone-button {
  background: #27ae60;
  color: white;
  text-decoration: none;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.1s ease;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.25);
  font-family: 'BebasNeuePro-Bold', sans-serif;
  display: inline-block;
}

.phone-button:hover {
  background: #219a52;
  transform: translateY(-2px);
  color: white;
  text-decoration: none;
}

.btn:hover {
  background: #0065cf;
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 123, 255, 0.3);
}

.btn.small {
  padding: 0.5rem 1.25rem;
}

/* Contact Form Section - Full Width Landscape */

.contact-form-section {
  width: 100%;
  margin-bottom: 3rem;
  padding: 0 2rem;
}

.contact-form-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  width: 100%;
  max-width: none;
  overflow: visible;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  width: 100%;
}

.form-column {
  width: 100%;
}

/* Ensure form text is visible */
.contact-form h3 {
  color: #214869 !important;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-section h4 {
  color: #214869 !important;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #214869;
  padding-bottom: 0.5rem;
}

.form-section h5 {
  color: #333333 !important;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.form-group label {
  color: #333333 !important;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.form-group input {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  color: #333333;
  background: white;
  height: 45px;
  box-sizing: border-box;
}

.form-group input:focus {
  border-color: #214869;
  outline: none;
  box-shadow: 0 0 0 3px rgba(33, 72, 105, 0.1);
}

/* Select dropdown styling */
.form-select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  color: #333333;
  background: white;
  height: 45px;
  box-sizing: border-box;
  cursor: pointer;
}

.form-select:focus {
  border-color: #214869;
  outline: none;
  box-shadow: 0 0 0 3px rgba(33, 72, 105, 0.1);
}

/* Textarea styling */
.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  color: #333333;
  background: white;
  box-sizing: border-box;
  resize: vertical;
  min-height: 80px;
  font-family: 'BebasNeuePro-Bold', sans-serif;
}

.form-textarea:focus {
  border-color: #214869;
  outline: none;
  box-shadow: 0 0 0 3px rgba(33, 72, 105, 0.1);
}

/* Checkbox styling for all checkbox sections */
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: #333333;
  font-family: 'BebasNeuePro-Bold', sans-serif;
  font-size: 0.9rem;
  min-width: fit-content;
  padding: 0.5rem 0.75rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  background: white;
  transition: all 0.3s ease;
}

.checkbox-label:hover {
  border-color: #214869;
  color: #214869;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 0.5rem;
  cursor: pointer;
  accent-color: #214869;
  flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
  background: #214869;
  border-color: #214869;
}

.checkbox-label:has(input[type="checkbox"]:checked) {
  background: #214869;
  color: white;
  border-color: #214869;
}

.checkbox-custom {
  display: none;
}

/* Radio button styling for radio sections */
.radio-group {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.radio-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: #333333;
  font-family: 'BebasNeuePro-Bold', sans-serif;
}

.radio-label input[type="radio"] {
  width: 18px;
  height: 18px;
  margin-right: 0.5rem;
  cursor: pointer;
  accent-color: #214869;
}

.checkbox-custom {
  display: none;
}

.radio-custom {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #214869;
  border-radius: 50%;
  margin-right: 8px;
  position: relative;
  transition: background 0.3s ease;
  flex-shrink: 0;
}

/* Blogs Grid Section - 4 Cards Below */

.blogs-grid-section {
  width: 100%;
  padding: 0 2rem;
}

.blogs-grid-section h3 {
  font-size: 1.8rem;
  color: #214869;
  margin-bottom: 2rem;
  font-family: 'BebasNeuePro-Bold', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.blogs-grid .blog-preview {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blogs-grid .blog-preview:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.blogs-grid .blog-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.blogs-grid .blog-content {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blogs-grid .blog-title {
  font-size: 1rem;
  color: #214869 !important;
  margin: 0 0 0.5rem 0;
  font-family: 'BebasNeuePro-Bold', sans-serif;
  line-height: 1.3;
}

.blogs-grid .blog-intro {
  font-size: 0.85rem;
  color: #666666 !important;
  margin: 0 0 1rem 0;
  line-height: 1.4;
  font-family: 'BebasNeuePro-Bold', sans-serif;
  flex: 1;
}

.blogs-grid .blog-link {
  display: inline-block;
  color: #214869 !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: 'BebasNeuePro-Bold', sans-serif;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.blogs-grid .blog-link:hover {
  color: #0065cf;
  text-decoration: underline;
}

/* Responsive styles for blog grid */

@media (max-width: 1200px) {
  .blogs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-form-grid {
    gap: 1.5rem;
  }
  
  .contact-form-card {
    padding: 1.5rem;
  }
  
  .blogs-grid-section {
    padding: 0 1.5rem;
  }
  
  .checkbox-group {
    gap: 0.75rem;
  }
}

@media (max-width: 768px) {
  .contact-form-section {
    padding: 0 1rem;
  }
  
  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-form-card {
    padding: 1rem;
  }
  
  .contact-form h3 {
    font-size: 1.5rem;
  }
  
  .form-section h4 {
    font-size: 1.1rem;
  }
  
  .blogs-grid-section {
    padding: 0 1rem;
  }
  
  .blogs-grid {
    grid-template-columns: 1fr;
  }
  
  .blogs-grid .blog-image {
    height: 200px;
  }
  
  .checkbox-group {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .checkbox-label {
    font-size: 0.85rem;
  }

  /* Tablet Hero Banner Adjustments */
  .section.hero {
    padding: 0;
    margin: 0;
  }

  .hero {
    min-height: auto;
    padding: 0;
    margin: 0;
  }

  .hero-banner {
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow: hidden;
  }

  .hero-banner-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
    content: url('./img/hero-banner-mobile.png');
  }

  .hero-content {
    display: none;
  }
}

@media (max-width: 480px) {
  .contact-form-section {
    padding: 0 0.5rem;
  }
  
  .contact-form-card {
    padding: 0.75rem;
    border-radius: 15px;
  }
  
  .contact-form h3 {
    font-size: 1.3rem;
  }
  
  .form-section h4 {
    font-size: 1rem;
  }
  
  .blogs-grid-section {
    padding: 0 0.5rem;
  }
  
  .blogs-grid-section h3 {
    font-size: 1.5rem;
  }
  
  .blogs-grid .blog-image {
    height: 180px;
  }
  
  .blogs-grid .blog-title {
    font-size: 0.9rem;
  }
  
  .blogs-grid .blog-intro {
    font-size: 0.8rem;
  }
  
  .checkbox-label {
    font-size: 0.8rem;
  }
  
  .checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
  }

  /* Mobile Navigation Adjustments */
  .nav {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
  }

  .logo {
    font-size: 1.2rem;
    text-align: center;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    font-weight: 600;
    font-family: 'BebasNeuePro-Bold', sans-serif;
    margin-bottom: 0.5rem;
  }

  .nav-links a {
    color: #ffffff;
    font-size: 1rem;
  }

  .phone-number {
    flex-basis: 100%;
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
    background: #27ae60;
    padding: 0.6rem 2rem;
    border-radius: 6px;
    font-family: 'BebasNeuePro-Bold', sans-serif;
    text-align: center;
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .phone-number .phone-button {
    color: #ffffff;
    text-decoration: none;
    display: block;
    padding: 0.2rem 0;
    border-radius: 0;
  }

  /* Mobile Hero Banner Adjustments */
  .section.hero {
    padding: 0;
    margin: 0;
  }

  .hero {
    min-height: auto;
    padding: 0;
    margin: 0;
  }

  .hero-banner {
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow: hidden;
  }

  .hero-banner-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
    content: url('./img/hero-banner-mobile.png');
  }

  .hero-content {
    display: none;
  }
}

/* Hero */

.hero {
  position: relative;
  background: #ffffff;
  color: #333333;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  padding: 0 2rem;
}

.hero-left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-tagline {
  margin-top: 1rem;
}

.hero-tagline p {
  font-family: 'Remachine Script', sans-serif;
  font-size: 131px;
  color: #214869;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-logo {
  max-width: 100%;
  height: auto;
  display: block;
  max-height: 300px;
}

.hero-illustration {
  max-width: 100%;
  height: auto;
  display: block;
  max-height: 350px;
}

/* Services Section */

.service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-image {
  width: 100%;
  height: 150px;
  object-fit: contain;
  display: block;
  padding: 1rem;
}

.service-btn {
  background: #003366;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 1rem;
  font-family: 'BebasNeuePro-Bold', sans-serif;
}

.service-btn:hover {
  background: #0065cf;
  transform: translateY(-2px);
}

.service-content {
  padding: 1.5rem;
}

.service-content h3 {
  font-size: 1.5rem;
  color: #214869;
  margin-bottom: 0.5rem;
  font-family: 'BebasNeuePro-Bold', sans-serif;
}

.service-content p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
  font-family: 'BebasNeuePro-Bold', sans-serif;
}

.email-insert-box {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.email-input {
  padding: 15px 25px;
  border: 2px solid #214869;
  border-radius: 5px;
  font-size: 1.1rem;
  font-family: 'BebasNeuePro-Bold', sans-serif;
  background: white;
  min-width: 400px;
  transition: border-color 0.3s ease;
}

.email-input:focus {
  outline: none;
  border-color: #0065cf;
  box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

.get-quote-btn {
  background: #27ae60;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'BebasNeuePro-Bold', sans-serif;
}

.get-quote-btn:hover {
  background: #219a52;
  transform: translateY(-2px);
}

.getting-started h2 {
  font-size: 2.3rem;
  color: #214869;
  margin-bottom: 2rem;
}

/* Contact and Gallery Section */

.why {
  background: #f5f9ff;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.gallery-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.contact-form-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.contact-form-card h3 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #214869;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-section {
  border: 1px solid #e1e8ed;
  border-radius: 8px;
  padding: 1.5rem;
  background: #fafafa;
  margin-bottom: 0;
  width: 100%;
  box-sizing: border-box;
}

.form-section h4 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #214869;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #214869;
  padding-bottom: 0.5rem;
}

.insurance-type-section {
  margin-bottom: 1.5rem;
}

.insurance-type-section h5 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #214869;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.8rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  font-family: 'BebasNeuePro-Bold', sans-serif;
}

.checkbox-label:hover {
  background-color: #f0f8ff;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border: 2px solid #e1e8ed;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: 'BebasNeuePro-Bold', sans-serif;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #214869;
  box-shadow: 0 0 0 3px rgba(13, 127, 230, 0.1);
}

.radio-group {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.radio-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  font-family: 'BebasNeuePro-Bold', sans-serif;
}

.radio-label input[type="radio"] {
  display: none;
}

.radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #214869;
  border-radius: 50%;
  margin-right: 8px;
  position: relative;
  transition: background 0.3s ease;
}

.radio-label input[type="radio"]:checked + .radio-custom {
  background: #003366;
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
  content: '';
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #214869;
  border-radius: 3px;
  margin-right: 8px;
  position: relative;
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
  background: #003366;
  border-color: #214869;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
  content: '✓';
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  font-size: 12px;
}

.submit-btn {
  background: #003366;
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 1rem;
  align-self: center;
  font-family: 'BebasNeuePro-Bold', sans-serif;
}

.submit-btn:hover {
  background: #0065cf;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 51, 102, 0.3);
}

.form-success-message {
  text-align: center;
  padding: 2rem;
  margin-top: 1rem;
}

.form-success-message p {
  font-size: 1.2rem;
  color: #155724;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: 5px;
  padding: 20px;
  font-weight: 500;
}

/* Google Reviews Section */

.reviews {
  background: #f8f9fa;
  padding: 4rem 0;
}

.reviews h2 {
  font-size: 2.5rem;
  color: #214869;
  margin-bottom: 3rem;
  font-family: 'BebasNeuePro-Bold', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.reviews-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  height: 200px;
}

.review-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s ease-in-out;
}

.review-item.active {
  opacity: 1;
  transform: translateX(0);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer-name {
  font-size: 1.2rem;
  color: #214869;
  margin: 0;
  font-family: 'BebasNeuePro-Bold', sans-serif;
}

.review-rating .stars {
  color: #ffc107;
  font-size: 1.2rem;
}

.review-date {
  color: #666;
  font-size: 0.9rem;
  font-family: 'BebasNeuePro-Bold', sans-serif;
}

.review-content {
  text-align: left;
}

.review-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin: 0;
  font-family: 'BebasNeuePro-Bold', sans-serif;
}

.review-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.3s ease;
}

.indicator.active {
  background: #214869;
}

.indicator:hover {
  background: #214869;
}

.footer {
  background: #214869;
  color: #ffffff;
  padding: 3.5rem 0;
  margin-top: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.footer-column h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-column p {
  font-size: 1rem;
  line-height: 1.5;
  color: #ffffff;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.social-icons {
  display: flex;
  gap: 0.5rem;
  font-size: 1.1rem;
}

.social-icon {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

.footer-logos {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-logo {
  height: 120px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 10;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-note {
  margin-top: 2rem;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-note p {
  font-size: 0.9rem;
  color: #ffffff;
  font-style: italic;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .checkbox-group {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-grid,
  .why-grid,
  .steps-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 2.5rem 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .radio-group {
    flex-direction: column;
    gap: 0.8rem;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-content {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
  }

  .hero-left,
  .hero-right {
    justify-content: center;
  }

  .contact-form-card {
    padding: 1rem;
  }

  .contact-form-card h3 {
    font-size: 1.8rem;
  }

  .form-section {
    padding: 1rem;
  }

  .form-section h4 {
    font-size: 1.2rem;
  }

  .insurance-type-section h5 {
    font-size: 1rem;
  }

  .checkbox-group {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .submit-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }

  .email-insert-box {
    flex-direction: column;
    gap: 1rem;
  }

  .email-input {
    min-width: 250px;
    font-size: 0.9rem;
  }
}

/* Blog Page Styles */

/* Blog Hero Section */
.blog-hero {
  background: linear-gradient(135deg, #214869 0%, #214869 100%);
  color: white;
  padding: 6rem 0 4rem;
  text-align: center;
}

.blog-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-family: 'BebasNeuePro-Bold', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.blog-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.blog-hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

.blog-hero-stats .stat {
  text-align: center;
}

.blog-hero-stats .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffff;
}

.blog-hero-stats .stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Blog Content Section */
.blog-content {
  padding: 4rem 0;
  background: #f8f9fa;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-post {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.blog-image-container {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-post:hover .blog-image {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #214869;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-content-wrapper {
  padding: 2rem;
}

.blog-title {
  font-size: 1.5rem;
  color: #214869;
  margin-bottom: 1rem;
  font-family: 'BebasNeuePro-Bold', sans-serif;
  line-height: 1.3;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #666;
}

.blog-date {
  font-weight: 600;
}

.blog-read-time {
  opacity: 0.8;
}

.blog-excerpt {
  color: #333;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.blog-full-content {
  display: none;
  color: #333;
  line-height: 1.6;
}

.blog-full-content h3 {
  color: #214869;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.blog-full-content h3:first-child {
  margin-top: 0;
}

.blog-full-content ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.blog-full-content li {
  margin-bottom: 0.5rem;
}

.blog-full-content strong {
  color: #214869;
}

.blog-full-content a {
  color: #214869;
  text-decoration: none;
  font-weight: 600;
}

.blog-full-content a:hover {
  text-decoration: underline;
}

.blog-read-more {
  background: #214869;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: 'BebasNeuePro-Bold', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-read-more:hover {
  background: #1a3a52;
}

/* Blog CTA Section */
.blog-cta {
  background: linear-gradient(135deg, #214869 0%, #214869 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-family: 'BebasNeuePro-Bold', sans-serif;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: 'BebasNeuePro-Bold', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.1rem;
}

.cta-btn.primary {
  background: #ffffff;
  color: #214869;
}

.cta-btn.primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.cta-btn.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-btn.secondary:hover {
  background: white;
  color: #214869;
}

/* Responsive Blog Styles */
@media (max-width: 768px) {
  .blog-hero {
    padding: 4rem 0 2rem;
  }
  
  .blog-hero-content h1 {
    font-size: 2rem;
  }
  
  .blog-hero-stats {
    gap: 1.5rem;
  }
  
  .blog-hero-stats .stat-number {
    font-size: 2rem;
  }
  
  .blog-content {
    padding: 2rem 0;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .blog-content-wrapper {
    padding: 1.5rem;
  }
  
  .blog-title {
    font-size: 1.3rem;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .blog-hero-content h1 {
    font-size: 1.8rem;
  }
  
  .blog-hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .blog-content-wrapper {
    padding: 1rem;
  }
  
  .blog-title {
    font-size: 1.2rem;
  }
  
  .cta-content h2 {
    font-size: 1.8rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
}
