body,
h1,
h2,
h3,
h4,
h5 {
  font-family: Outfit, sans-serif;
}
.nav-link,
.navbar-brand {
  color: var(--primary-blue) !important;
}
#preloader,
.navbar,
.service-card {
  background-color: var(--white);
}
.blog-meta i,
.blog-title a:hover,
.footer-links a:hover,
.navbar-brand span,
.recent-post-content h6 a:hover,
.related-post-title a:hover {
  color: var(--accent-green);
}
#preloader,
.hero:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.copyright,
.cta-box,
.network-card,
.plan-comparison th,
.section-number,
.section-title,
.service-card,
.share-widget,
.terms-header {
  text-align: center;
}
.author-social a,
.btn-cta-outline,
.footer-links a,
.nav-links a,
.nav-post,
.servicebtn,
.social-icon,
.toc-list a {
  text-decoration: none;
}
.hero:before,
.milestone-timeline:before,
.milestone:before,
.nav-link.active:after,
.section-title h2:after {
  position: absolute;
  content: "";
}
:root {
  --primary-blue: #1a3a6c;
  --secondary-blue: #2a5298;
  --accent-green: #2ecc71;
  --light-gray: #f8f9fa;
  --medium-gray: #e9ecef;
  --dark-text: #333333;
  --white: #ffffff;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}
.nav-link,
.navbar,
.service-card {
  transition: var(--transition);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  color: var(--dark-text);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 76px;
}
h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
  color: var(--primary-blue);
}
#preloader {
  position: fixed;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s, visibility 0.5s;
}
.loader {
  width: 70px;
  height: 70px;
  border: 7px solid var(--medium-gray);
  border-top: 7px solid var(--primary-blue);
  border-radius: 50%;
  animation: 1s linear infinite spin;
}
@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.navbar {
  box-shadow: var(--shadow);
  padding: 15px 0;
}
.navbar-brand {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 24px;
}
.nav-link {
  font-weight: 500;
  margin: 0 8px;
  position: relative;
}
.footer,
.footer h5 {
  color: var(--white);
}
.nav-link.active,
.nav-link:hover {
  color: var(--accent-green) !important;
}
.nav-link.active:after {
  width: 100%;
  height: 3px;
  background: var(--accent-green);
  bottom: -5px;
  left: 0;
  border-radius: 2px;
}
.navbar-toggler {
  border: none;
  padding: 0;
}
.navbar-toggler:focus {
  box-shadow: none;
}
#scrollToTop,
.back-to-top,
.benefit-card,
.btn-cta:hover,
.btn-faq:hover,
.btn-hero:hover,
.btn-quote:hover,
.calculator-section,
.comparison-table,
.cost-calculator,
.network-card,
.plan-card,
.plan-comparison,
.service-card,
.terms-container,
.terms-navigation {
  box-shadow: var(--shadow);
}
.service-card {
  border: 1px solid var(--medium-gray);
}
#scrollToTop,
.back-to-top,
.social-icon {
  border-radius: 50%;
  display: flex;
  transition: var(--transition);
}
.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto auto 25px;
}
.footer {
  background-color: var(--primary-blue);
  padding: 70px 0 30px;
}
.footer h5 {
  margin-bottom: 25px;
  font-size: 1.2rem;
}
.blog-content li,
.categories-list li,
.footer-links li,
.nav-links li,
.privacy-section li,
.toc-list li {
  margin-bottom: 10px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}
.footer-links a:hover {
  padding-left: 5px;
}
.footername {
  color: #fff !important;
}
.social-icons {
  display: flex;
  gap: 15px;
}
.social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.social-icon:hover {
  background-color: var(--accent-green);
  transform: translateY(-3px);
}
#scrollToTop:hover,
.btn-quote:hover {
  background-color: var(--primary-blue);
}
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 50px;
  color: rgba(255, 255, 255, 0.6);
}
#scrollToTop,
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--accent-green);
  color: var(--white);
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  border: none;
}
#scrollToTop.show {
  opacity: 1;
  visibility: visible;
}
#scrollToTop:hover {
  transform: translateY(-5px);
}
.about {
  max-height: 515px;
  margin: auto;
  display: block;
}
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .process-step:not(:last-child):after {
    display: none;
  }
  .nav-link.active:after {
    bottom: 0;
    width: 3px;
    height: 100%;
    left: -10px;
  }
}
@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
  .hero {
    padding: 80px 0;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .btn-hero,
  .btn-hero-outline {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .navbar-collapse {
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-top: 15px;
  }
}
.faq-accordion,
.section-padding {
  padding: 80px 0;
}
.section-title {
  margin-bottom: 50px;
}
.btn-hero,
.btn-hero-outline {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 15px;
  transition: var(--transition);
  font-weight: 600;
}
.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}
.section-title h2:after {
  width: 70px;
  height: 3px;
  background: var(--accent-green);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.btn-quote {
  background-color: var(--accent-green);
  color: var(--white);
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 600;
  transition: var(--transition);
  border: none;text-decoration: none;
}
.btn-quote:hover {
  color: var(--white);
  transform: translateY(-3px);
}
.hero {
  background: linear-gradient(rgba(26, 58, 108, 0.85), rgba(26, 58, 108, 0.9))
      center/cover,
    url("../images/Financial.jpeg")
      center/cover;
  color: var(--white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.hero:before {
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%232ecc71' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.3;
}
.btn-cta-outline:hover,
.btn-cta:hover,
.btn-faq:hover,
.btn-hero-outline:hover,
.btn-hero:hover {
  background-color: var(--white);
  color: var(--primary-blue);
  transform: translateY(-3px);
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 3.2rem;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 700px;
}
.btn-hero {
  background-color: var(--accent-green);
  border-radius: 30px;
  padding: 14px 35px;
  margin-right: 15px;
  border: none;
}
.btn-hero-outline {
  background-color: transparent;
  border: 2px solid var(--white);
  border-radius: 30px;
  padding: 12px 35px;
}
.about-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(46, 204, 113, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.about-icon i,
.service-icon i {
  font-size: 30px;
  color: var(--accent-green);
}
.about-item:hover .about-icon i,
.category-card:hover .category-icon i,
.coverage-card:hover .coverage-icon i,
.cta-section h2,
.nav-links a:hover i,
.plan-badge,
.plan-card:hover .plan-icon i,
.still-questions h2,
.toc-list a:hover i {
  color: var(--white);
}
.about-item,
.contact-form,
.contact-info {
  box-shadow: var(--shadow);
  padding: 20px;
  border-radius: 20px;
}
.about-item:hover .about-icon {
  background-color: var(--accent-green);
  transform: translateY(-5px);
}
.health-insurance-hero {
  background: linear-gradient(rgba(26, 58, 108, 0.85), rgba(26, 58, 108, 0.9))
      center/cover,
    url("https://images.unsplash.com/photo-1576091160399-112ba8d25d1f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1400&q=80")
      center/cover;
  color: var(--white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.plan-card {
  background-color: var(--white);
  transition: var(--transition);
  border: 1px solid var(--medium-gray);
}
.category-card:hover .category-icon,
.coverage-card:hover .coverage-icon,
.plan-badge,
.plan-card:hover .plan-icon {
  background-color: var(--accent-green);
}
.coverage-icon,
.plan-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.plan-badge {
  margin-bottom: 15px;
}
.coverage-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 20px;
  background-color: var(--white);
  border-radius: 10px;
  transition: var(--transition);
  
}

.text-primary{color:var(--accent-green) !important;}
.coverage-feature:hover {
  background-color: rgba(46, 204, 113, 0.1);
  transform: translateX(5px);
}
.feature-check {
  width: 40px;
  height: 40px;
  background-color: rgba(46, 204, 113, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}
.feature-check i {
  color: var(--accent-green);
  font-size: 18px;
}
.network-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 25px;
  height: 100%;
  transition: var(--transition);
}
.benefit-card:hover,
.counter-box:hover,
.network-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.hospital-logo {
  height: 60px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hospital-logo img {
  max-height: 100%;
  max-width: 100%;
  filter: grayscale(100%);
  transition: var(--transition);
}
.network-card:hover .hospital-logo img {
  filter: grayscale(0);
}
.calculator-section,
.cost-calculator {
  background-color: var(--light-gray);
  border-radius: 15px;
  padding: 40px;
}
.calculator-result,
.categories-list a:hover .count,
.comparison-table th,
.cost-summary,
.plan-comparison th {
  background-color: var(--primary-blue);
}
.blog-content p,
.slider-container {
  margin-bottom: 25px;
}
.slider-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.calculator-result,
.cost-summary {
  color: var(--white);
  border-radius: 10px;
  padding: 25px;
  margin-top: 30px;
}
.calculator-result h4,
.cost-summary h4 {
  color: var(--white);
  margin-bottom: 15px;
}
.cost-breakdown {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
}
.comparison-table,
.plan-comparison {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
}
.plan-comparison th {
  color: var(--white);
  padding: 20px;
  vertical-align: middle;
}
.plan-comparison td {
  padding: 15px 20px;
  border-bottom: 1px solid var(--medium-gray);
  vertical-align: middle;
}
.comparison-table tr:last-child td,
.plan-comparison tr:last-child td,
.terms-table tr:last-child td {
  border-bottom: none;
}
.check-mark {
  color: var(--accent-green);
  font-size: 1.2rem;
}
.x-mark {
  color: #e74c3c;
  font-size: 1.2rem;
}
.faq-item,
.health-faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--medium-gray);
  border-radius: 10px;
  overflow: hidden;
}
.faq-question,
.health-faq-question {
  background-color: var(--white);
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}
.faq-question:hover,
.health-faq-question:hover {
  background-color: rgba(46, 204, 113, 0.05);
}
.faq-answer,
.health-faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
  background-color: var(--light-gray);
}
.faq-answer.open,
.health-faq-answer.open {
  padding: 20px;
  max-height: 500px;
}
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .process-step:not(:last-child):after {
    display: none;
  }
  .nav-link.active:after {
    bottom: 0;
    width: 3px;
    height: 100%;
    left: -10px;
  }
  .cost-calculator {
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
  .hero {
    padding: 80px 0;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .btn-hero,
  .btn-hero-outline {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .navbar-collapse {
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-top: 15px;
  }
  .plan-comparison {
    display: block;
    overflow-x: auto;
  }
}
@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .counter {
    font-size: 2.5rem;
  }
  .cost-calculator {
    padding: 20px;
  }
}
.service-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  transition: var(--transition);
  border: 1px solid var(--medium-gray);
}
.blog-card:hover,
.coverage-card:hover,
.plan-card:hover,
.service-card:hover,
.strategy-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-green);
}
.service-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(46, 204, 113, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}
.coverage-card h4,
.plan-card h4,
.service-card h4,
.strategy-card h4 {
  margin-bottom: 15px;
  font-size: 1.4rem;
}
.process-step:not(:last-child):after {
  content: "";
  position: absolute;
  width: 80%;
  height: 2px;
  background-color: var(--medium-gray);
  top: 30px;
  left: 60%;
  z-index: 1;
}
.calculator-container .form-control,
.comment-form .form-control,
.contact-form .form-control,
.quote-form .form-control {
  padding: 15px;
  border-radius: 8px;
  border: 1px solid var(--medium-gray);
  margin-bottom: 20px;
  transition: var(--transition);
}
.calculator-container .form-control:focus,
.comment-form .form-control:focus,
.contact-form .form-control:focus,
.newsletter-form .form-control:focus,
.quote-form .form-control:focus {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 0.25rem rgba(46, 204, 113, 0.25);
}
.comparison-table td,
.terms-section h2 {
  border-bottom: 1px solid var(--medium-gray);
}
.life-insurance-hero {
  background: linear-gradient(rgba(26, 58, 108, 0.85), rgba(26, 58, 108, 0.9))
      center/cover,
    url("https://images.unsplash.com/photo-1587614382346-4ec70e388b28?ixlib=rb-4.0.3&auto=format&fit=crop&w=1400&q=80")
      center/cover;
  color: var(--white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.benefit-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 25px;
  height: 100%;
  transition: var(--transition);
}
.benefit-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(46, 204, 113, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.benefit-icon i {
  font-size: 25px;
  color: var(--accent-green);
}
.comparison-table th {
  color: var(--white);
  padding: 20px;
  text-align: center;
}
.nav-post.prev,
.terms-table th {
  text-align: left;
}
.comparison-table td {
  padding: 15px 20px;
}
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .process-step:not(:last-child):after {
    display: none;
  }
  .nav-link.active:after {
    bottom: 0;
    width: 3px;
    height: 100%;
    left: -10px;
  }
  .calculator-section {
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
  .hero {
    padding: 80px 0;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .btn-hero,
  .btn-hero-outline {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .navbar-collapse {
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-top: 15px;
  }
  .comparison-table {
    display: block;
    overflow-x: auto;
  }
}
@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .counter {
    font-size: 2.5rem;
  }
  .calculator-section {
    padding: 20px;
  }
}
.terms-container {
  background-color: var(--white);
  border-radius: 15px;
  padding: 50px;
  margin-bottom: 50px;
  border: 1px solid var(--medium-gray);
}
.terms-header {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid var(--accent-green);
}
.terms-header h1 {
  color: var(--primary-blue);
  margin-bottom: 15px;
}
.accordion-body p:last-child,
.last-updated,
.terms-section:last-child {
  margin-bottom: 0;
}
.blog-header,
.privacy-section,
.terms-section {
  margin-bottom: 40px;
}
.terms-section h2 {
  color: var(--primary-blue);
  margin-bottom: 20px;
  font-size: 1.8rem;
  padding-bottom: 10px;
}
.terms-section h3 {
  color: var(--secondary-blue);
  margin: 25px 0 15px;
  font-size: 1.4rem;
}
.terms-section p {
  margin-bottom: 15px;
  line-height: 1.7;
}
.terms-section ol,
.terms-section ul {
  margin-bottom: 20px;
  padding-left: 30px;
}
.terms-section li {
  margin-bottom: 10px;
  line-height: 1.6;
}
.important-note {
  background-color: rgba(46, 204, 113, 0.1);
  border-left: 4px solid var(--accent-green);
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
}
.author-social a,
.contact-info-box,
.nav-links a,
.terms-table th {
  background-color: var(--light-gray);
}
.important-note h4 {
  color: var(--accent-green);
  margin-bottom: 10px;
}
.contact-info-box {
  border-radius: 10px;
  padding: 25px;
  margin-top: 30px;
  border-left: 4px solid var(--primary-blue);
}
.terms-navigation {
  position: sticky;
  top: 120px;
  background-color: var(--white);
  border-radius: 10px;
  padding: 25px;
  border: 1px solid var(--medium-gray);
  margin-bottom: 30px;
}
.author-social a:hover,
.blog-category,
.section-number {
  background-color: var(--accent-green);
  color: var(--white);
}
.definition-list,
.terms-table {
  margin: 20px 0;
}
.share-widget h4,
.terms-navigation h4 {
  margin-bottom: 20px;
  color: var(--primary-blue);
}
@media print {
  #scrollToTop,
  .back-to-top,
  .footer,
  .navbar,
  .terms-navigation {
    display: none !important;
  }
  body {
    padding-top: 0;
  }
  .terms-container {
    box-shadow: none;
    border: none;
    padding: 0;
  }
}
.definition-list dt {
  font-weight: 600;
  color: var(--primary-blue);
  margin-top: 15px;
}
.definition-list dd {
  margin-left: 20px;
  margin-bottom: 15px;
  color: #555;
}
.terms-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--medium-gray);
}
.terms-table th {
  color: var(--primary-blue);
  font-weight: 600;
  padding: 15px;
  border-bottom: 2px solid var(--accent-green);
}
.terms-table td {
  padding: 15px;
  border-bottom: 1px solid var(--medium-gray);
  vertical-align: top;
}
.section-number {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  line-height: 30px;
  margin-right: 10px;
  font-weight: 600;
}
.categories-list,
.nav-links,
.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links a {
  display: block;
  padding: 10px 15px;
  color: var(--dark-text);
  border-radius: 8px;
  transition: var(--transition);
}
.categories-list a:hover,
.nav-links a:hover,
.toc-list a:hover {
  background-color: var(--accent-green);
  color: var(--white);
  transform: translateX(5px);
}
.nav-links a i,
.toc-list a i,
.toc-title i {
  margin-right: 10px;
  color: var(--accent-green);
}
.blog-meta {
  display: flex;
  align-items: center;
  color: var(--white);
}
.blog-meta span,
.client-info {
  display: flex;
  align-items: center;
}
.blog-category {
  display: inline-block;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.author-bio,
.share-widget {
  background-color: var(--white);
  box-shadow: var(--shadow);
}
.blog-content-area,
.faq-stats {
  padding: 60px 0;
}
.blog-image-full {
  width: 100%;
  height: 500px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 40px;
}
.blog-image img,
.blog-image-full img,
.recent-post-image img,
.related-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.blog-image-full img:hover {
  transform: scale(1.02);
}
.blog-content {
  font-size: 1.1rem;
  line-height: 1.8;
}
.blog-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--primary-blue);
  font-size: 2rem;
}
.blog-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--primary-blue);
  font-size: 1.5rem;
}
.blog-content ol,
.blog-content ul {
  margin-bottom: 25px;
  padding-left: 30px;
}
.highlight-box {
  border-left: 4px solid var(--accent-green);
}
.highlight-box h4 {
  color: var(--accent-green);
  margin-bottom: 15px;
}
.author-bio {
  border-radius: 15px;
  padding: 40px;
  margin: 50px 0;
  border: 1px solid var(--medium-gray);
}
.author-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.author-avatar {
  border: 3px solid var(--accent-green);
}
.author-info h3 {
  margin-bottom: 10px;
  color: var(--primary-blue);
}
.author-social {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}
.share-widget,
.tags-container {
  margin: 40px 0;
}
.author-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  transition: var(--transition);
}
.author-social a:hover {
  transform: translateY(-3px);
}
.share-widget {
  border-radius: 10px;
  padding: 25px;
  border: 1px solid var(--medium-gray);
}
.tag,
.toc-list a {
  transition: var(--transition);
  background-color: var(--light-gray);
}
.share-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
  font-size: 1.2rem;
}
.share-btn.pinterest {
  background-color: #bd081c;
}
.share-btn:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.tags-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
}
.tag {
  color: var(--primary-blue);
}
.blog-card,
.nav-post,
.related-post-card,
.table-of-contents {
  background-color: var(--white);
  box-shadow: var(--shadow);
}
.tag:hover {
  background-color: var(--accent-green);
  color: var(--white);
}
.post-navigation {
  display: flex;
  justify-content: space-between;
  margin: 50px 0;
  padding-top: 30px;
  border-top: 1px solid var(--medium-gray);
}
.nav-post,
.related-post-content {
  padding: 20px;
}
.nav-post {
  width: 48%;
  border-radius: 10px;
  transition: var(--transition);
  border: 1px solid var(--medium-gray);
}
.nav-post:hover {
  transform: translateY(-5px);
  border-color: var(--accent-green);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.nav-post.next {
  text-align: right;
}
.nav-post-label {
  font-size: 0.9rem;
  color: var(--accent-green);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.nav-post-title {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 0;
}
.related-posts {
  margin: 60px 0;
}
.blog-card,
.related-post-card {
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--medium-gray);
}
.category-card:hover,
.related-post-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-green);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.related-post-image {
  height: 200px;
  overflow: hidden;
}
.blog-card:hover .blog-image img,
.related-post-card:hover .related-post-image img {
  transform: scale(1.05);
}
.related-post-meta {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #666;
  font-size: 0.9rem;
}
.blog-meta span,
.related-post-meta span {
  margin-right: 15px;
  display: flex;
  align-items: center;
}
.related-post-meta i {
  margin-right: 5px;
  color: var(--accent-green);
  font-size: 0.8rem;
}
.related-post-title {
  font-size: 1.1rem;
  margin-bottom: 15px;
  line-height: 1.4;
}
.blog-title a,
.recent-post-content h6 a,
.related-post-title a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: var(--transition);
}
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .nav-link.active:after {
    bottom: 0;
    width: 3px;
    height: 100%;
    left: -10px;
  }
  .sidebar {
    margin-top: 50px;
  }
  .blog-image-full {
    height: 400px;
  }
  .author-header {
    flex-direction: column;
    text-align: center;
  }
  .author-avatar {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
  .hero {
    padding: 80px 0 40px;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .navbar-collapse {
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-top: 15px;
  }
  .blog-image-full {
    height: 300px;
  }
  .post-navigation {
    flex-direction: column;
    gap: 20px;
  }
  .nav-post {
    width: 100%;
  }
  .blog-content h2 {
    font-size: 1.8rem;
  }
  .blog-content h3 {
    font-size: 1.3rem;
  }
}
@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .blog-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .blog-meta span {
    margin-right: 0;
  }
  .blog-image-full {
    height: 250px;
  }
  .share-buttons {
    gap: 10px;
  }
  .share-btn {
    width: 45px;
    height: 45px;
  }
}
.toc-list a,
.toc-title {
  display: flex;
  align-items: center;
}
.table-of-contents {
  border-radius: 15px;
  padding: 30px;
  margin: 40px 0;
  border: 1px solid var(--medium-gray);
}
.cta-box h3,
.toc-title {
  margin-bottom: 20px;
}
.toc-title {
  font-size: 1.3rem;
  color: var(--primary-blue);
}
.toc-list a {
  color: var(--dark-text);
  padding: 10px 15px;
  border-radius: 8px;
}
.btn-cta-outline,
.cta-box,
.cta-box h3 {
  color: var(--white);
}
.cta-box {
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--secondary-blue)
  );
  border-radius: 15px;
  padding: 40px;
  margin: 50px 0;
}
.cta-box p {
  margin-bottom: 25px;
  opacity: 0.9;
}
.btn-cta-outline {
  background-color: transparent;
  border: 2px solid var(--white);
  border-radius: 30px;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  display: inline-block;
}
.coverage-card,
.plan-card,
.strategy-card {
  padding: 30px;
  transition: var(--transition);
  box-shadow: var(--shadow);
  text-align: center;
}
.coverage-card {
  background-color: var(--white);
  border-radius: 10px;
  height: 100%;
  border: 1px solid var(--medium-gray);
}
.coverage-icon,
.plan-icon,
.strategy-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(46, 204, 113, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto auto 25px;
}
.category-icon i,
.coverage-icon i,
.plan-icon i,
.strategy-icon i {
  font-size: 35px;
  color: var(--accent-green);
}
.plan-card,
.strategy-card {
  background-color: var(--white);
  border-radius: 10px;
  height: 100%;
  border: 1px solid var(--medium-gray);
  position: relative;
  overflow: hidden;
}
.plan-badge {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 10px;
  background-color: rgba(26, 58, 108, 0.1);
  color: var(--primary-blue);
}
.meter-score,
.milestone-year {
  font-weight: 700;
  color: var(--primary-blue);
}
.income-option,
.option-card {
  background: linear-gradient(135deg, var(--light-gray), var(--white));
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  border-left: 4px solid var(--accent-green);
  transition: var(--transition);
}
.income-option:hover,
.option-card:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow);
}
.income-header,
.option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.income-icon,
.option-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(46, 204, 113, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon i,
.income-icon i,
.option-icon i,
.protection-icon i {
  font-size: 20px;
  color: var(--accent-green);
}
.performance-metric,
.retirement-metric {
  text-align: center;
  padding: 20px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.timeframe-selector,
.timeline-selector {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}
.timeframe-btn,
.timeline-btn {
  padding: 8px 20px;
  border: 2px solid var(--medium-gray);
  background: var(--white);
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
}
.timeframe-btn.active,
.timeline-btn.active {
  background: var(--accent-green);
  color: var(--white);
  border-color: var(--accent-green);
}
.readiness-meter {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow);
  text-align: center;
}
.meter-container {
  width: 200px;
  height: 200px;
  margin: 0 auto 30px;
  position: relative;
}
.meter-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(
    var(--accent-green) 0 75%,
    var(--medium-gray) 75% 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}
.meter-inner {
  width: 70%;
  height: 70%;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.meter-score {
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
  .hero {
    padding: 80px 0;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .btn-hero,
  .btn-hero-outline {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .navbar-collapse {
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-top: 15px;
  }
  .calculator-container {
    padding: 25px;
  }
  .timeline-selector {
    flex-wrap: wrap;
  }
  .meter-container {
    width: 150px;
    height: 150px;
  }
}
.milestone,
.milestone-timeline {
  padding-left: 30px;
  position: relative;
}
@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .counter {
    font-size: 2.5rem;
  }
  .meter-score,
  .metric-value {
    font-size: 2rem;
  }
  .meter-container {
    width: 120px;
    height: 120px;
  }
}
.milestone-timeline:before {
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent-green);
}
.milestone {
  margin-bottom: 30px;
}
.milestone:before {
  left: -36px;
  top: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--accent-green);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--accent-green);
}
.milestone-year {
  margin-bottom: 5px;
}
.blog-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.blog-category {
  /* position: absolute; */
  top: 15px;
  left: 15px;
  background-color: var(--accent-green);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}
.featured-post,
.sidebar-widget {
  background-color: var(--white);
  box-shadow: var(--shadow);
}
.blog-content {
  padding: 25px;
}

.hero .blog-meta{color:#fff !important;}
.plantext{margin-bottom: 20px;}

.blog-meta {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #666;
  font-size: 0.9rem;
}
.blog-meta i {
  margin-right: 5px;
  color: var(--accent-green);
}
.blog-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  line-height: 1.4;
}
.blog-excerpt,
.featured-content .blog-meta {
  margin-bottom: 20px;
}
.blog-excerpt {
  color: #666;
  line-height: 1.6;
}
.categories-list .count,
.page-link,
.tag {
  color: var(--primary-blue);
}
.blog-author {
  display: flex;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--medium-gray);
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
}
.author-avatar img,
.client-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-info h6 {
  margin-bottom: 0;
  font-size: 0.9rem;
}
.author-info p {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0;
}
.featured-post {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 40px;
}
.featured-post .blog-image {
  height: 400px;
}
.featured-content {
  padding: 40px;
}
.featured-content .blog-title {
  font-size: 2rem;
  margin-bottom: 20px;
}
.featured-content .blog-excerpt {
  font-size: 1.1rem;
  margin-bottom: 25px;
}
.sidebar {
  position: sticky;
  top: 100px;
}
.search-widget,
.widget-title {
  position: relative;
}
.sidebar-widget {
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid var(--medium-gray);
}
.categories-list a,
.tag {
  background-color: var(--light-gray);
  transition: var(--transition);
  text-decoration: none;
}
.widget-title {
  font-size: 1.2rem;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--accent-green);
}
.widget-title:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background: var(--primary-blue);
  bottom: -2px;
  left: 0;
}
.categories-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dark-text);
  padding: 10px 15px;
  border-radius: 8px;
}
.categories-list .count {
  background-color: var(--white);
  padding: 3px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}
.categories-list a:hover .count {
  color: var(--white);
}
.recent-post {
  display: flex;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--medium-gray);
}
.recent-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.recent-post-image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 15px;
}
.recent-post:hover .recent-post-image img {
  transform: scale(1.1);
}
.recent-post-content h6 {
  margin-bottom: 5px;
  font-size: 0.95rem;
  line-height: 1.4;
}
.recent-post-content .post-date {
  font-size: 0.8rem;
  color: #666;
  display: flex;
  align-items: center;
}
.recent-post-content .post-date i {
  margin-right: 5px;
  color: var(--accent-green);
  font-size: 0.7rem;
}
.newsletter-form .form-control {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid var(--medium-gray);
  margin-bottom: 15px;
  transition: var(--transition);
}
.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
}
.read-time,
.risk-level {
  font-size: 0.8rem;
  font-weight: 600;
}
.page-link:hover,
.tag:hover {
  background-color: var(--accent-green);
  color: var(--white);
  transform: translateY(-2px);
}
.pagination {
  justify-content: center;
  margin-top: 50px;
}
.search-btn,
.share-btn {
  height: 40px;
  align-items: center;
  transition: var(--transition);
}
.page-link {
  border: none;
  margin: 0 5px;
  border-radius: 8px !important;
  transition: var(--transition);
}
.nav-tabs .nav-link.active,
.page-item.active .page-link {
  color: var(--white);
  border-color: var(--accent-green);
}
.search-widget input {
  padding-right: 50px;
}
.search-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  background-color: var(--accent-green);
  color: var(--white);
  border: none;
  border-radius: 8px;
  width: 40px;
  display: flex;
  justify-content: center;
}
.chart-container,
.coverage-list li,
.faq-hero,
.feature-list li,
.process-step,
.search-box,
.step-number,
.testimonial-text {
  position: relative;
}
.search-btn:hover {
  background-color: var(--primary-blue);
}
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .nav-link.active:after {
    bottom: 0;
    width: 3px;
    height: 100%;
    left: -10px;
  }
  .featured-post .blog-image {
    height: 300px;
  }
  .featured-content .blog-title {
    font-size: 1.5rem;
  }
  .sidebar {
    margin-top: 50px;
  }
}
@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
  .hero {
    padding: 80px 0;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .btn-hero,
  .btn-hero-outline {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .navbar-collapse {
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-top: 15px;
  }
  .featured-post .blog-image {
    height: 250px;
  }
  .featured-content {
    padding: 25px;
  }
}
@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .blog-card {
    margin-bottom: 30px;
  }
  .featured-content .blog-title {
    font-size: 1.3rem;
  }
  .featured-content .blog-excerpt {
    font-size: 1rem;
  }
}
.read-time {
  background-color: rgba(46, 204, 113, 0.1);
  color: var(--accent-green);
  padding: 3px 10px;
  border-radius: 15px;
}
.share-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.share-btn {
  width: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
}
.share-btn.facebook {
  background-color: #3b5998;
}
.share-btn.twitter {
  background-color: #1da1f2;
}
.share-btn.linkedin {
  background-color: #0077b5;
}
.share-btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}
.comment-section {
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid var(--medium-gray);
}
.comment-form {
  background-color: var(--white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--shadow);
  margin-top: 30px;
}
.risk-level {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
  margin-top: 10px;
}
.risk-low {
  background-color: rgba(46, 204, 113, 0.2);
  color: var(--accent-green);
}
.risk-medium {
  background-color: rgba(255, 193, 7, 0.2);
  color: #ffc107;
}
.risk-high {
  background-color: rgba(220, 53, 69, 0.2);
  color: #dc3545;
}
.counter-box {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.counter,
.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 10px;
}
.counter-box p,
.stat-box p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary-blue);
}
.feature-list li {
  margin-bottom: 15px;
  padding-left: 35px;
}
.coverage-list li:before,
.feature-list li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-green);
}
.process-step {
  text-align: center;
  padding: 20px;
  box-shadow: var(--shadow);
  border-radius: 20px;
}
.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 20px;
  z-index: 2;
}
.testimonial-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
  height: 100%;
  transition: var(--transition);
}
.stat-box:hover,
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-text:before {
  content: "\201C";
  font-size: 4rem;
  color: var(--accent-green);
  opacity: 0.3;
  position: absolute;
  top: -20px;
  left: -10px;
}
.client-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 3px solid var(--medium-gray);
}
.cta-section {
  background: linear-gradient(
    to right,
    var(--primary-blue),
    var(--secondary-blue)
  );
  color: var(--white);
  padding: 80px 0;
}
.btn-cta,
.btn-faq {
  background-color: var(--accent-green);
  color: var(--white);
  border-radius: 30px;
  padding: 14px 35px;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 20px;
  transition: var(--transition);
  border: none;text-decoration: none;
}
.calculator-container,
.quote-form {
  background-color: var(--white);
  border-radius: 15px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.range-slider {
  width: 100%;
  margin: 20px 0;
}
.range-value {
  font-weight: 600;
  color: var(--accent-green);
  font-size: 1.2rem;
}
.chart-container {
  height: 300px;
  margin: 30px 0;
}
.metric-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 10px;
}
.metric-label {
  color: var(--secondary-blue);
  font-weight: 600;
}
@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
  .hero {
    padding: 80px 0;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .btn-hero,
  .btn-hero-outline {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .navbar-collapse {
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-top: 15px;
  }
  .calculator-container {
    padding: 25px;
  }
  .timeframe-selector {
    flex-wrap: wrap;
  }
}
.input-group-text,
.search-box button {
  background-color: var(--accent-green);
}
@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .counter {
    font-size: 2.5rem;
  }
  .metric-value {
    font-size: 2rem;
  }
}
.input-group-text {
  color: var(--white);
  border: none;
}
.tab-content {
  padding: 20px;
  border: 1px solid var(--medium-gray);
  border-top: none;
  border-radius: 0 0 10px 10px;
}
.nav-tabs .nav-link {
  border-radius: 10px 10px 0 0;
  border: 1px solid var(--medium-gray);
  margin: 0 5px;
}
.form-label {
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 8px;
}
.protection-level {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  background: var(--light-gray);
  border-radius: 10px;
  transition: var(--transition);
}
.protection-level:hover {
  background: var(--medium-gray);
  transform: translateX(5px);
}
.contact-icon,
.protection-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(46, 204, 113, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}
.coverage-list {
  list-style-type: none;
  padding-left: 0;
}
.coverage-list li {
  margin-bottom: 10px;
  padding-left: 25px;
}
.privacy-hero {
  background: linear-gradient(rgba(26, 58, 108, 0.9), rgba(26, 58, 108, 0.95));
  color: var(--white);
  padding: 100px 0 60px;
  text-align: center;
}
.privacy-hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 2.8rem;
}
.last-updated {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}
.privacy-content {
  background-color: var(--light-gray);
  padding: 60px 0;
}
.privacy-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 40px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}
.privacy-section h3 {
  color: var(--primary-blue);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-green);
}
.privacy-section ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
.highlight-box {
  background-color: rgba(46, 204, 113, 0.1);
  border-left: 4px solid var(--accent-green);
  padding: 20px;
  margin: 25px 0;
  border-radius: 0 8px 8px 0;
}
.privacy-contact {
  background-color: var(--white);
  padding: 60px 0;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}
.faq-hero {
  background: linear-gradient(rgba(26, 58, 108, 0.85), rgba(26, 58, 108, 0.9))
      center/cover,
    url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1400&q=80")
      center/cover;
  color: var(--white);
  padding: 120px 0 80px;
  text-align: center;
  overflow: hidden;
}
.faq-hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 3rem;
}
.faq-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
}
.search-box {
  max-width: 600px;
  margin: 40px auto 0;
}
.search-box input {
  width: 100%;
  padding: 15px 20px;
  border-radius: 50px;
  border: none;
  box-shadow: var(--shadow);
  font-size: 1rem;
}
.search-box button {
  position: absolute;
  right: 5px;
  top: 5px;
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 10px 25px;
  font-weight: 600;
}
.faq-categories {
  padding: 60px 0;
  background-color: var(--light-gray);
}
.category-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  border: 2px solid transparent;
  text-decoration: none;
  display: block;
  color: var(--dark-text);
}
.category-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(46, 204, 113, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.accordion-body,
.accordion-button {
  padding: 20px 25px;
  background-color: var(--white);
}
.accordion-item,
.category-card h4 {
  margin-bottom: 15px;
}
.accordion-item {
  border: none;
  border-radius: 10px !important;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.accordion-button {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
  background-color: rgba(46, 204, 113, 0.1);
  color: var(--primary-blue);
}
.accordion-button:focus {
  box-shadow: none;
  border-color: var(--accent-green);
}
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a3a6c'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232ecc71'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}
.accordion-body {
  border-top: 1px solid var(--medium-gray);
}
.helpful-info {
  background-color: rgba(46, 204, 113, 0.1);
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
  border-left: 4px solid var(--accent-green);
}
.still-questions {
  background: linear-gradient(
    to right,
    var(--primary-blue),
    var(--secondary-blue)
  );
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.stat-box {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
@media (max-width: 992px) {
  .faq-hero h1,
  .hero h1 {
    font-size: 2.5rem;
  }
  .nav-link.active:after {
    bottom: 0;
    width: 3px;
    height: 100%;
    left: -10px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 80px 0;
  }
  .faq-hero h1,
  .hero h1 {
    font-size: 2.2rem;
  }
  .btn-hero,
  .btn-hero-outline {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .privacy-card,
  .quote-form {
    padding: 25px;
  }
  .protection-level {
    flex-direction: column;
    text-align: center;
  }
  .protection-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .privacy-hero {
    padding: 80px 0 40px;
  }
  .privacy-hero h1 {
    font-size: 2rem;
  }
  .section-padding {
    padding: 60px 0;
  }
  .faq-hero {
    padding: 80px 0 50px;
  }
  .search-box {
    margin: 30px auto 0;
  }
  .stat-number {
    font-size: 2.5rem;
  }
  .navbar-collapse {
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-top: 15px;
  }
}
@media (max-width: 576px) {
  .faq-hero h1,
  .hero h1,
  .privacy-hero h1 {
    font-size: 1.8rem;
  }
  .counter {
    font-size: 2.5rem;
  }
  .accordion-body,
  .accordion-button {
    padding: 15px 20px;
  }
  .accordion-button {
    font-size: 1rem;
  }
}
.copyright a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
    font-size: 14px;
}

.copyright a:hover {
   
    text-decoration: underline;
}
html, body {
    width: 100%;
    overflow-x: hidden;
}


