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

html {
  scroll-behavior: smooth;
}

body {
  color: #2c3e50;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a,
button,
input,
textarea,
select {
  -webkit-tap-highlight-color: rgba(0, 102, 204, 0.2);
}

button,
a {
  touch-action: manipulation;
}

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid #156082;
  outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-family: Inter, sans-serif;
  font-size: 1.6rem;
  color: #333;
  margin: 0;
  padding: 0;
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
}
body h1 {
  font-size: clamp(2.188rem, 1.939rem + 1.061vw, 3rem);
  line-height: 1.55;
  letter-spacing: 0.02em;
}
body h2 {
  font-size: clamp(1.75rem, 1.5rem + 0.75vw, 2.5rem);
  letter-spacing: 0.02em;
  line-height: 1.55;
}
body h3 {
  font-size: clamp(1.313rem, 1.125rem + 0.563vw, 1.875rem);
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 1.6;
}
body h4 {
  font-size: clamp(1.125rem, 1rem + 0.375vw, 1.5rem);
  letter-spacing: 0.025em;
  line-height: 1.6;
}
body p {
  font-size: clamp(1rem, 0.875rem + 0.25vw, 1.25rem);
  margin-bottom: 1rem;
  line-height: 1.6;
}
body ul > li,
body ol > li {
  font-size: clamp(1rem, 0.875rem + 0.25vw, 1.25rem);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
@media (max-width: 992px) {
  body ul > li,
  body ol > li {
    margin-bottom: 0;
    font-size: 0.95rem;
  }
}

header {
  background-color: #333333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  max-width: 1170px;
  margin-block: 0;
  margin-inline: auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media (max-width: 992px) {
  nav {
    padding: 1rem;
  }
}

.logo {
  font-weight: 700;
  color: #156082;
  text-decoration: none;
  position: relative;
  z-index: 1001;
}
.logo > img {
  display: block;
  width: auto;
  height: clamp(2.5rem, 4vw, 3.5rem);
  max-width: 100%;
}
@media (max-width: 480px) {
  .logo > img {
    height: 2.25rem;
  }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 1120px) {
  .nav-menu {
    gap: 1.25rem;
  }
}
.nav-menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap;
}
@media (max-width: 1120px) {
  .nav-menu a {
    font-size: 1rem;
  }
}
.nav-menu a:hover, .nav-menu a.active {
  color: #f4c430;
  background-color: #333333;
}
.nav-menu a.active {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}
@media (max-width: 992px) {
  .nav-menu a.active {
    text-decoration: none;
  }
}
.nav-menu a:focus-visible {
  text-decoration: none;
}
@media (max-width: 992px) {
  .nav-menu a {
    color: #333333;
  }
}
@media (max-width: 992px) {
  .nav-menu {
    position: absolute;
    top: calc(100% + 0.15rem);
    left: 0;
    right: 0;
    background-color: #ffffff;
    flex-direction: column;
    gap: 0;
    padding: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-height: 0;
    border-radius: 0 0 0.5rem 0.5rem;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    pointer-events: none;
    z-index: 999;
  }
  .nav-menu.active {
    max-height: 75vh;
    pointer-events: auto;
  }
  .nav-menu li {
    padding: 0;
    width: 100%;
  }
  .nav-menu a {
    display: block;
    padding: 0.5rem 2rem;
    border-bottom: 1px solid #828282;
  }
  .nav-menu a:hover {
    background-color: #f8f9fa;
  }
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  position: relative;
  z-index: 1001;
}
.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #156082;
  transition: all 0.3s ease;
  border-radius: 3px;
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}
@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
  }
}

footer {
  background-color: #333333;
  color: #ffffff;
  padding: 3rem 2rem 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.footer-section h3 {
  color: #c04d38;
  margin-bottom: 1rem;
}
.footer-section ul {
  list-style: none;
}
.footer-section ul li {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.footer-section a {
  color: #f8f9fa;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-section a:hover {
  color: #c04d38;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #f8f9fa;
}
.footer-bottom p {
  font-size: 0.95rem;
  margin: 0;
}

.container {
  max-width: 1170px;
  margin: 0 auto;
  padding-block: 2rem 2rem;
}
@media (max-width: 768px) {
  .container {
    padding: 2rem 1rem;
  }
}

section {
  margin-block-end: 4rem;
}

.section-title {
  text-align: center;
  color: #333333;
  margin-block-end: 3rem;
}

section {
  position: relative;
}
section .content-wrapper {
  margin-inline: auto;
  padding-block: 25px;
  max-width: 1170px;
}

section {
  width: 100%;
  border-radius: 0;
}
section:nth-child(1) {
  margin-block: 0;
}
section {
  margin-block: 0;
}
section > .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}
section.section-1a {
  padding: 60px 0;
}
@media (max-width: 992px) {
  section.section-1a {
    padding: 30px 0 0 0;
  }
}
section.section-1b {
  padding: 60px 0;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  section.section-1b {
    padding: 30px 0 0 0;
  }
}
section.section-2a {
  padding: 60px 0;
  background-color: #2e9737;
}
section.section-2b {
  padding: 60px 0;
  background-color: #ffffff;
}
section.section-3a {
  padding: 60px 0;
  background-color: #f5f5f5;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  min-height: 44px;
  min-width: 44px;
  border-radius: 25px;
  corner-shape: squircle;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .btn {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
}
.btn:focus-visible {
  outline: 3px solid #c04d38;
  outline-offset: 3px;
}
.btn-blog-cta {
  text-wrap: balance;
  width: 50%;
  text-align: center;
  margin-inline: auto;
  margin-block: 34px;
}
.btn-blog-cta:hover {
  background-color: #1e90ff;
  transform: translateY(2px);
  box-shadow: 0 4px 12px rgba(30, 144, 255, 0.4);
}

.btn-primary {
  background-color: #c04d38;
  color: #ffffff;
}
.btn-primary:hover {
  background-color: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
  color: white;
}

.btn-secondary {
  background-color: #ffffff;
  color: #156082;
  border: 2px solid #ffffff;
}
.btn-secondary:hover {
  background-color: transparent;
  color: #ffffff;
}

.btn-secondary-green {
  background-color: #1c65ad;
  color: white;
  border: 2px solid #1c65ad;
}
.btn-secondary-green:hover {
  background-color: #1e8e3e;
  border-color: #1e8e3e;
}

.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .btn-group {
    flex-direction: column;
    gap: 0.75rem;
  }
}

.btn-full-width {
  width: 100%;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  background-color: #ffffff;
  padding-block: 1.5rem;
  padding-inline: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-bottom: 4px solid #156082;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}
.card h3 {
  color: #156082;
  margin-bottom: 1rem;
}
@media (max-width: 480px) {
  .card {
    padding: 1.5rem;
  }
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #c04d38;
}
@media (max-width: 480px) {
  .card-icon {
    font-size: 2.5rem;
  }
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
}
.blog-card h3 {
  color: #156082;
  margin-bottom: 0.5rem;
}

.blog-card-image {
  width: 100%;
  height: 200px;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333333;
}

.blog-card-content {
  padding: 1.5rem;
}

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

.pricing-card {
  background: linear-gradient(135deg, #156082, #1c65ad);
  color: #ffffff;
  padding: 2.5rem;
  border-radius: 10px;
  text-align: center;
}
.pricing-card .price {
  font-size: 3rem;
  font-weight: 700;
  margin: 1rem 0;
}

.hero {
  position: relative;
  padding-block: 60px;
  padding-inline: 2rem;
  background-color: #f8f9fa;
  color: #ffffff;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
}
.hero.inner {
  min-height: 500px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-block: 60px 0;
}
@media (max-width: 992px) {
  .hero.inner {
    min-height: 420px;
    padding-block: 40px 0;
  }
}
@media (max-width: 768px) {
  .hero.inner {
    min-height: 360px;
    padding-block: 32px 0;
  }
}
@media (max-width: 480px) {
  .hero.inner {
    min-height: 300px;
    padding-block: 24px 0;
  }
}
.hero-content {
  position: relative;
  color: white;
  z-index: 1;
  width: min(100%, 900px);
  padding-inline: 0.5rem;
}
.hero-content h1 {
  font-size: clamp(1.5rem, 1.1rem + 2vw, 3rem);
  margin-bottom: 1.5rem;
  line-height: 1.55;
  text-wrap: balance;
}
.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .hero-content p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .hero-content p {
    font-size: 0.95rem;
  }
}
.hero-content h1,
.hero-content p {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}
@media (max-width: 992px) {
  .hero {
    padding: 3.5rem 1.5rem;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 3rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 2.5rem 1rem;
  }
}
.hero:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.error-page {
  color: #333333;
}
.error-page .hero.inner {
  background-image: url("../images/blog/blog-img-01.jpg");
}
.error-page .wide {
  width: 100%;
  background-color: #2e9737;
  padding: 2rem 0;
}
.error-page .wide .content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  font-size: 1.6rem;
  color: white;
}
.error-page section .content-wrapper {
  outline: 1px solid transparent;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #333333;
  transition: font-weight 0.2s ease;
}
.form-group label.validation-error {
  font-weight: 700;
  color: #ee4254;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #dde0e4;
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #156082;
}
.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-wrapper {
  margin-top: 2rem;
}

.form-status {
  display: none;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 5px;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
}

.form-status-success {
  display: block;
  background-color: #d4edda;
  border: 2px solid #c3e6cb;
  color: #155724;
}

.form-status-error {
  display: block;
  background-color: #f8d7da;
  border: 2px solid #f5c6cb;
  color: #721c24;
}

button[type=submit] {
  position: relative;
  transition: opacity 0.3s ease;
}
button[type=submit]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
button[type=submit].loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.contact-form:has(button[disabled]) {
  opacity: 0.8;
  pointer-events: none;
}
.contact-form:has(button[disabled]) button[type=submit] {
  pointer-events: auto;
}

.faq-item {
  background-color: #ffffff;
  margin-bottom: 1rem;
  border-bottom: 1px solid #333333;
  overflow: hidden;
}
.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: #333333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question > span {
  font-size: 1.75rem;
  text-wrap: balance;
}
@media (max-width: 768px) {
  .faq-question > span {
    font-size: 1.2rem;
    line-height: 1.1;
  }
}
.faq-question:hover {
  background-color: #f8f9fa;
}
.faq-icon {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333333;
  transition: transform 0.9s ease;
  user-select: none;
  min-width: 1.5rem;
  text-align: center;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  color: #2c3e50;
  font-size: 1.4rem;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.9s ease, padding 0.4s ease;
}
.faq-answer.open {
  max-height: 500px;
  opacity: 1;
  padding: 0 1.5rem 1.5rem;
}
@media (max-width: 768px) {
  .faq-answer.open {
    overflow-y: scroll;
  }
}
.faq-answer > p {
  margin: 1rem 0;
  font-size: 1.4rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .faq-answer > p {
    font-size: 1.1rem;
  }
}

.back-to-top {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background-color: #c04d38;
  transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background-color: #c04d38;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
.back-to-top:active {
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
}

.feature-box {
  background-color: #f8f9fa;
  padding: 3rem 2rem;
  border-radius: 10px;
  margin: 2rem 0;
}
.feature-box h3 {
  color: #1c65ad;
}

.stats {
  background-color: #f8f9fa;
  padding: 3rem 2rem;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 2rem auto 0;
}
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.stat-item h3 {
  font-size: 2.5rem;
  color: #c04d38;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .stat-item h3 {
    font-size: 2rem;
  }
}
.stat-item p {
  color: #333333;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 480px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

.step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  color: white;
}

.step-circle-primary {
  background-color: #156082;
}

.step-circle-secondary {
  background-color: #1c65ad;
}

.step-circle-accent {
  background-color: #c04d38;
}

.step-item {
  text-align: center;
}
@media (max-width: 1199px) {
  .step-item {
    width: 80%;
    margin-inline: auto;
  }
}
@media (max-width: 768px) {
  .step-item {
    text-align: left;
  }
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: start;
}

.contact-icon {
  font-size: 1.5rem;
}

.contact-label {
  margin: 0;
  color: #333333;
}

.contact-sublabel {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

.hours-box {
  margin-top: 3rem;
  padding: 2rem;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .hours-box {
    margin-top: 2rem;
    padding: 1.5rem;
  }
}

.hours-row {
  display: flex;
  justify-content: space-between;
}

.cta-section {
  margin-top: 4rem;
  padding: 3rem;
  background-color: #f8f9fa;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .cta-section {
    padding: 2rem 1.5rem;
  }
}

.cta-section-gradient {
  margin-top: 4rem;
  padding: 3rem;
  background: linear-gradient(135deg, #156082, #1c65ad);
  color: white;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .cta-section-gradient {
    padding: 2rem 1.5rem;
  }
}

.service-area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 480px) {
  .service-area-grid {
    grid-template-columns: 1fr;
  }
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 2rem;
}
@media (max-width: 480px) {
  .social-links {
    flex-direction: column;
    font-size: 1.5rem;
  }
}

.social-link {
  color: #156082;
  transition: color 0.3s;
  text-decoration: none;
}
.social-link:hover {
  opacity: 0.8;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 480px) {
  .resources-grid {
    grid-template-columns: 1fr;
  }
}

.section-title-primary {
  color: #156082;
  text-align: center;
}

.section-title-secondary {
  color: #1c65ad;
}

.section-title-accent {
  color: #c04d38;
}

h1 {
  color: #f4c430;
}

.home-page .hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("../images//dktop/ev-img-2_dtp.jpg");
}
@media (width <= 992px) {
  .home-page .hero {
    background-image: url("../images//tblt/ev-img-15_tbl.jpg");
  }
}
@media (width <= 768px) {
  .home-page .hero {
    min-height: 420px;
    background-image: url("../images//mbl/ev-img-1_mbl.jpg");
    background-size: cover;
    background-position: center center;
  }
}
@media (width <= 576px) {
  .home-page .hero {
    min-height: 360px;
    background-size: cover;
  }
}
@media (width <= 480px) {
  .home-page .hero {
    min-height: 320px;
    background-image: url("../images//mbl/ev-img-1_mbl.jpg");
  }
}
.home-page .hero-content h1 {
  line-height: 1.55;
  letter-spacing: 0.015em;
  margin-bottom: 20px;
}
.home-page .hero-content p {
  font-size: 1.2rem;
  line-height: 1.5;
}
.home-page .mission {
  padding: 60px 20px;
  background-color: #f8f9fa;
}
.home-page .mission h2 {
  text-align: center;
  margin-bottom: 40px;
}
.home-page .mission p {
  font-size: 1.4rem;
}
.home-page .mission .mission-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

.about-page {
  color: #333333;
}
.about-page .hero.inner {
  background-image: url("../images/blog/blog-img-01.jpg");
}
.about-page .wide {
  width: 100%;
  background-color: #2e9737;
  padding: 2rem 0;
}
.about-page .wide .content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  font-size: 1.6rem;
  color: white;
}

.buyers-page .hero.inner {
  background-image: url("../images/ev-img-dktp_13.jpg");
}
.buyers-page .hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-page .hero.inner {
  background-image: url("../images/ev-img-dktp_28.jpg");
  background-position: top center;
}
.contact-page .hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.contact-page .cta-section-gradient {
  border-radius: 0;
}

.dealerships-page .hero.inner {
  background-image: url("../images/blog/blog-img-02.jpg");
}
.dealerships-page .hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.faq-page .hero.inner {
  background-image: url("../images/ev-img-dktp_14.jpg");
  background-position: top center;
}
.faq-page .hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.resources-page .hero.inner {
  background-image: url("../images/ev-img-dktp_32.jpg");
  background-position: top center;
}
.resources-page .hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.blog-post h1 {
  color: #2c3e50;
}

.blog-post .blog-listing {
  padding: 4rem 0;
}
.blog-post .blog-listing .container {
  padding: 0;
}
.blog-post .blog-listing .blog-header {
  background-color: transparent;
}
.blog-post .blog-listing .blog-listing-header {
  position: relative;
  text-align: center;
  margin-bottom: 4rem;
  box-shadow: none;
  z-index: 1;
  background-color: transparent;
}
.blog-post .blog-listing .blog-listing-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}
.blog-post .blog-listing .blog-listing-header p {
  margin-block: 0;
  margin-inline: auto;
  max-width: 60ch;
  font-size: 1.2rem;
  text-wrap: balance;
  color: #828282;
}
.blog-post .blog-listing .blog-grid-wrapper {
  position: relative;
  margin-bottom: 3rem;
  padding-inline-start: 10px;
}
.blog-post .blog-listing .blog-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: white;
  border: 2px solid #156082;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #156082;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.blog-post .blog-listing .blog-nav-arrow:hover:not(:disabled) {
  background: #156082;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.blog-post .blog-listing .blog-nav-arrow:focus-visible {
  outline: 3px solid #156082;
  outline-offset: 2px;
}
.blog-post .blog-listing .blog-nav-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  border-color: #828282;
  color: #828282;
}
.blog-post .blog-listing .blog-nav-arrow svg {
  width: 24px;
  height: 24px;
}
.blog-post .blog-listing .blog-nav-arrow.blog-nav-prev {
  left: -48px;
}
@media (max-width: 768px) {
  .blog-post .blog-listing .blog-nav-arrow.blog-nav-prev {
    left: 0;
  }
}
.blog-post .blog-listing .blog-nav-arrow.blog-nav-next {
  right: -48px;
}
@media (max-width: 768px) {
  .blog-post .blog-listing .blog-nav-arrow.blog-nav-next {
    right: 0;
  }
}
@media (max-width: 768px) {
  .blog-post .blog-listing .blog-nav-arrow {
    width: 40px;
    height: 40px;
  }
  .blog-post .blog-listing .blog-nav-arrow svg {
    width: 20px;
    height: 20px;
  }
}
.blog-post .blog-listing .blog-grid {
  display: flex;
  gap: 1.3rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
}
.blog-post .blog-listing .blog-grid::-webkit-scrollbar {
  height: 8px;
}
.blog-post .blog-listing .blog-grid::-webkit-scrollbar-track {
  background: #f8f9fa;
  border-radius: 4px;
}
.blog-post .blog-listing .blog-grid::-webkit-scrollbar-thumb {
  background: #156082;
  border-radius: 4px;
}
.blog-post .blog-listing .blog-grid::-webkit-scrollbar-thumb:hover {
  background: rgb(18.9, 86.4, 117);
}
.blog-post .blog-listing .blog-grid {
  scrollbar-width: thin;
  scrollbar-color: #156082 #f8f9fa;
}
.blog-post .blog-listing .no-posts {
  text-align: center;
  padding: 4rem 2rem;
  background: #f8f9fa;
  border-radius: 8px;
  color: #828282;
}
.blog-post .blog-card {
  background: #f9f6f4;
  border-radius: 0 0 30px 0;
  corner-shape: bevel;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.75s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  min-width: 320px;
  max-width: 380px;
  flex-shrink: 0;
  border: 1px solid #333333;
}
.blog-post .blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.blog-post .blog-card .blog-card-image {
  margin: 0 !important;
  padding: 0;
  height: 200px;
  overflow: hidden;
  width: 100% !important;
  max-width: 100% !important;
  margin-inline: 0 !important;
  margin-block: 0 !important;
}
.blog-post .blog-card .blog-card-image a {
  display: block;
  height: 100%;
  width: 100%;
}
.blog-post .blog-card .blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.blog-post .blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}
.blog-post .blog-card .blog-card-content {
  padding-block: 1.5rem 1rem;
  padding-inline: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.blog-post .blog-card .blog-card-header {
  margin-bottom: 0.5rem;
  min-height: 220px;
  background-color: transparent;
  box-shadow: none;
}
.blog-post .blog-card .blog-card-title {
  margin-bottom: 0.5rem;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.8rem;
  text-wrap: balance;
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.blog-post .blog-card .blog-card-title a {
  color: #2c3e50;
  text-decoration: none;
}
.blog-post .blog-card .blog-card-title a:hover {
  color: #156082;
}
.blog-post .blog-card .blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: #828282;
  margin-bottom: 1rem;
}
.blog-post .blog-card .blog-card-meta time,
.blog-post .blog-card .blog-card-meta .blog-card-author,
.blog-post .blog-card .blog-card-meta .blog-card-category {
  display: inline-block;
}
.blog-post .blog-card .blog-card-meta .blog-card-category {
  color: #156082;
  font-weight: 600;
}
.blog-post .blog-card .blog-card-excerpt {
  color: #828282;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}
.blog-post .blog-card .blog-card-link {
  color: #156082;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s;
  text-transform: uppercase;
}
.blog-post .blog-card .blog-card-link:hover {
  color: rgb(18.9, 86.4, 117);
}
.blog-post .blog-header {
  position: relative;
  margin-block: 50px 3rem;
  margin-inline: auto;
  max-width: 50ch;
  text-align: center;
  z-index: 1;
  box-shadow: none;
  background-color: transparent;
}
.blog-post .blog-header .blog-title {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2.75rem;
  margin-bottom: 1rem;
  text-wrap: balance;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .blog-post .blog-header .blog-title {
    font-size: 2rem;
  }
}
.blog-post .blog-header .blog-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.95rem;
  color: #828282;
}
.blog-post .blog-header .blog-meta .blog-date,
.blog-post .blog-header .blog-meta .blog-author,
.blog-post .blog-header .blog-meta .blog-category,
.blog-post .blog-header .blog-meta .blog-reading-time {
  display: inline-block;
}
.blog-post .blog-header .blog-meta .blog-category {
  color: #156082;
  font-weight: 600;
}
.blog-post .blog-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid #f8f9fa;
}
@media (max-width: 768px) {
  .blog-post .blog-navigation {
    grid-template-columns: 1fr;
  }
}
.blog-post .blog-navigation .blog-nav-prev,
.blog-post .blog-navigation .blog-nav-next {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.blog-post .blog-navigation .blog-nav-prev:hover,
.blog-post .blog-navigation .blog-nav-next:hover {
  background: rgb(233.475, 236.55, 239.625);
}
.blog-post .blog-navigation .blog-nav-prev .blog-nav-label,
.blog-post .blog-navigation .blog-nav-next .blog-nav-label {
  font-size: 0.875rem;
  color: #828282;
  font-weight: 600;
}
.blog-post .blog-navigation .blog-nav-prev .blog-nav-title,
.blog-post .blog-navigation .blog-nav-next .blog-nav-title {
  color: #2c3e50;
  font-size: 1.1rem;
  font-weight: 600;
}
.blog-post .blog-navigation .blog-nav-next {
  text-align: right;
}
.blog-post figure {
  max-width: 65%;
  overflow: hidden;
  margin-block: 0 2rem;
  margin-inline: auto;
}
@media (max-width: 992px) {
  .blog-post figure {
    max-width: 100%;
    border-radius: 0;
  }
}
.blog-post figure img {
  width: 100%;
}
.blog-post .blog-hero {
  max-height: 40vw;
  display: flex;
  align-items: center;
  margin-block: 0 4rem;
  overflow: hidden;
  outline: 10px solid #2c3e50;
}
.blog-post .blog-hero figure {
  max-width: 100%;
  margin-block: 0 2rem;
  flex-grow: 1;
}
.blog-post .blog-hero figure img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.blog-post .blog-content-wrapper .blog-content,
.blog-post .page-content-wrapper .page-content {
  display: grid;
  grid-template-columns: 1fr minmax(0, 70ch) 1fr;
  grid-gap: 1.5rem;
  margin-block: 0 4rem;
  margin-inline: auto;
  max-width: 50ch;
}
.blog-post .blog-content-wrapper .blog-content *,
.blog-post .page-content-wrapper .page-content * {
  grid-column: 2/3;
}
.blog-post .blog-content-wrapper .blog-content :is(figure, .blog-post-image, .wide-blog),
.blog-post .page-content-wrapper .page-content :is(figure, .blog-post-image, .wide-blog) {
  grid-column: 1/-1;
}
.blog-post .blog-content-wrapper .blog-content h1,
.blog-post .page-content-wrapper .page-content h1 {
  text-wrap: balance;
}
@media (max-width: 992px) {
  .blog-post .blog-content-wrapper .blog-content h1,
  .blog-post .page-content-wrapper .page-content h1 {
    text-align: center;
  }
}
.blog-post .blog-container-wrapper .blog-container :is(figure, .blog-post-image, .wide-blog) {
  margin: 0;
}
.blog-post .blog-sources-ref {
  font-size: 1rem;
  color: #828282;
  margin-block: -10px 0;
  margin-inline-start: 25px;
}

.privacy-policy-page h1 {
  color: #2c3e50;
}

.privacy-policy-section,
.terms-of-use-section {
  margin: 0 auto;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 10px;
}
.privacy-policy-section ul,
.privacy-policy-section ol,
.terms-of-use-section ul,
.terms-of-use-section ol {
  margin-block-start: 1rem;
  margin-block-end: 1rem;
  margin-inline-start: 1.2rem;
}

.terms-of-use-page h1 {
  color: #2c3e50;
}

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

.mb-2 {
  margin-bottom: 2rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.pbk-2 {
  padding-block: 2rem;
}

.bg-light {
  background-color: #f8f9fa;
}

.max-w-500 {
  max-width: 500px;
  margin: 0 auto;
}

.max-w-800 {
  max-width: 800px;
  margin: 0 auto;
}

.section-mt {
  margin-top: 4rem;
}

.p-3 {
  padding: 3rem;
}

.rounded {
  border-radius: 10px;
}

.text-lg {
  font-size: 1.1rem;
}

.text-muted {
  color: #333333;
}

.flex-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

a {
  color: #156082;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #c04d38;
}
a:focus-visible {
  outline: 3px solid #c04d38;
  outline-offset: 3px;
  text-decoration: none;
}

.img-placeholder {
  width: 100%;
  height: 400px;
  background-color: #f8f9fa;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333333;
}
@media (max-width: 480px) {
  .img-placeholder {
    height: 250px;
  }
}

.img-placeholder-sm {
  width: 100%;
  height: 300px;
  background-color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333333;
  border: 2px solid #ddd;
}

.list-spaced {
  line-height: 2;
  margin-left: 1.5rem;
}
.list-spaced.text-left {
  text-align: left !important;
}

.list-no-style {
  list-style: none;
  line-height: 2;
}

.link-primary {
  color: #156082;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}
.link-primary:hover {
  text-decoration: underline;
}

.article-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.grid-2col {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  .grid-2col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.grid-2col-reverse {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  .grid-2col-reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.grid-2col-equal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 768px) {
  .grid-2col-equal {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.grid-3col {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  .grid-3col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.grid-3col-equal {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 768px) {
  .grid-3col-equal {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.price-small {
  font-size: 1.5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:focus,
.sr-only-focusable:active {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/* Touch-friendly improvements */
a,
button,
input,
textarea,
select {
  -webkit-tap-highlight-color: rgba(0, 102, 204, 0.2);
}

button,
a {
  touch-action: manipulation;
}

/* Focus states for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

/* Skip Link for keyboard navigation */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  color: var(--white);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
  z-index: 9999;
  border-radius: 0 0 4px 0;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid var(--accent-orange);
  outline-offset: 2px;
}

/* Screen reader only utility class */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/*# sourceMappingURL=style.css.map */