@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Open+Sans:wght@400;500;600;700&display=swap');

:root {
  --teal: #17a7b7;
  --teal-dark: #138d9b;
  --blue: #006cb7;
  --blue-dark: #005a99;
  --green: #2C9E1C;
  --green-dark: #248a17;
  --white: #ffffff;
  --black: #000000;
  --light-grey: #f5f5f5;
  --dark-grey: #333333;
  --medium-grey: #666666;
  --border-grey: #e0e0e0;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--dark-grey);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
  h3 { font-size: 1.75rem; }
}

@media (min-width: 1024px) {
  h1 { font-size: 3.5rem; }
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--teal);
}

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

ul, ol {
  padding-left: 1.5rem;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1.4;
  text-align: center;
  justify-content: center;
}

.btn-green {
  background: var(--green);
  color: var(--white);
}

.btn-green:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(44, 158, 28, 0.4);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
}

.btn-teal:hover {
  background: var(--teal-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(23, 167, 183, 0.4);
}

.btn-white {
  background: var(--white);
  color: var(--dark-grey);
  border: 2px solid var(--border-grey);
}

.btn-white:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark-grey);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* Header */
.site-header {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 48px;
  height: 48px;
  background: var(--teal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
}

.logo-text h1,
.logo-text .logo-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.logo-text .logo-subtitle {
  font-size: 0.75rem;
  color: var(--teal);
  font-weight: 500;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 0;
}

@media (min-width: 1024px) {
  .header-nav {
    display: flex;
  }
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.5rem 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--teal);
}

.nav-link .chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
}

.nav-item:hover .chevron {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 260px;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  z-index: 100;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 0.625rem 1.25rem;
  color: var(--dark-grey);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.nav-dropdown a:hover {
  background: var(--light-grey);
  color: var(--teal);
  padding-left: 1.5rem;
}

.header-cta {
  display: none;
}

@media (min-width: 1024px) {
  .header-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
  }
}

.header-phone {
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.header-phone:hover {
  color: var(--teal);
}

.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.5rem;
  width: 44px;
  height: 44px;
}

@media (min-width: 1024px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-menu {
  display: none;
  background: #111;
  padding: 1rem 0;
  border-top: 1px solid #333;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  color: var(--white);
  padding: 0.75rem 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  border-bottom: 1px solid #222;
  transition: all 0.2s ease;
}

.mobile-menu a:hover {
  color: var(--teal);
  padding-left: 1.5rem;
}

.mobile-menu .mobile-dropdown-title {
  color: var(--teal);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1rem 1rem 0.375rem;
  border-bottom: none;
  cursor: default;
}

.mobile-menu .mobile-dropdown-title:hover {
  padding-left: 1rem;
}

.mobile-menu .mobile-sub a {
  padding-left: 2rem;
  font-size: 0.875rem;
  color: #ccc;
}

.mobile-menu .btn-green {
  margin: 1rem;
  display: block;
  text-align: center;
}

/* Hero */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5rem 0 3rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 700px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .hero {
    padding: 6rem 0 4rem;
  }
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 1.25rem;
  text-align: center;
}

.stat-box .stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-box .stat-label {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8125rem;
  font-weight: 500;
}

/* Inner Hero */
.inner-hero {
  background: var(--black);
  padding: 3rem 0 2rem;
  position: relative;
}

.inner-hero h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: 2rem;
}

@media (min-width: 768px) {
  .inner-hero h1 {
    font-size: 2.5rem;
  }
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.875rem;
}

.breadcrumbs a {
  color: var(--teal);
}

.breadcrumbs a:hover {
  color: var(--white);
}

.breadcrumbs span {
  color: #999;
}

.breadcrumbs .separator {
  color: #666;
}

/* Trust Bar */
.trust-bar {
  background: var(--white);
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-grey);
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .trust-bar-inner {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--light-grey);
  border-radius: 8px;
  border: 1px solid var(--border-grey);
}

.trust-badge-icon {
  width: 48px;
  height: 48px;
  background: var(--teal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-badge-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.trust-badge-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--dark-grey);
  line-height: 1.3;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-grey {
  background: var(--light-grey);
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-teal {
  background: var(--teal);
  color: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  color: var(--blue);
  margin-bottom: 1rem;
}

.section-dark .section-title h2 {
  color: var(--white);
}

.section-teal .section-title h2 {
  color: var(--white);
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.0625rem;
  color: var(--medium-grey);
}

.section-dark .section-title p {
  color: rgba(255,255,255,0.8);
}

.section-teal .section-title p {
  color: rgba(255,255,255,0.9);
}

.teal-underline {
  display: block;
  width: 60px;
  height: 4px;
  background: var(--teal);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.section-dark .teal-underline {
  background: var(--teal);
}

/* Content Area */
.content-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .content-wrapper {
    grid-template-columns: 1fr 350px;
  }
}

.content-main h2 {
  color: var(--blue);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.content-main h2:first-child {
  margin-top: 0;
}

.content-main h3 {
  color: var(--dark-grey);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.content-main p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.content-main ul,
.content-main ol {
  margin-bottom: 1rem;
}

.content-main li {
  margin-bottom: 0.375rem;
  line-height: 1.6;
}

.content-main strong {
  font-weight: 600;
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  overflow: hidden;
}

.sidebar-card-header {
  background: var(--teal);
  color: var(--white);
  padding: 1rem 1.25rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.0625rem;
}

.sidebar-card-body {
  padding: 1.25rem;
}

.sidebar-nav a {
  display: block;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--border-grey);
  color: var(--dark-grey);
  font-size: 0.9375rem;
  transition: all 0.2s ease;
}

.sidebar-nav a:last-child {
  border-bottom: none;
}

.sidebar-nav a:hover {
  color: var(--teal);
  padding-left: 0.5rem;
}

.sidebar-form .form-group {
  margin-bottom: 1rem;
}

.sidebar-form label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
  color: var(--dark-grey);
}

.sidebar-form input,
.sidebar-form textarea {
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: 1px solid var(--border-grey);
  border-radius: 6px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875rem;
  transition: border-color 0.3s ease;
}

.sidebar-form input:focus,
.sidebar-form textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(23, 167, 183, 0.1);
}

.sidebar-form textarea {
  resize: vertical;
  min-height: 80px;
}

/* Cards */
.card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.card-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  background-color: #ddd;
  position: relative;
}

.card-body {
  padding: 1.5rem;
}

.card-body h3 {
  margin-bottom: 0.75rem;
  color: var(--dark-grey);
}

.card-body p {
  color: var(--medium-grey);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.card-link {
  color: var(--teal);
  font-weight: 600;
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.card-link:hover {
  color: var(--blue);
}

.card-link svg {
  transition: transform 0.3s ease;
}

.card-link:hover svg {
  transform: translateX(4px);
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Testimonials */
.testimonial-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  padding: 2rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  fill: #f59e0b;
  color: #f59e0b;
}

.testimonial-text {
  font-style: italic;
  color: var(--dark-grey);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
}

.testimonial-author {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--dark-grey);
}

.testimonial-location {
  font-size: 0.8125rem;
  color: var(--medium-grey);
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-item {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-4px);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  background: rgba(23, 167, 183, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
  color: var(--teal);
}

.benefit-item h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--dark-grey);
}

.benefit-item p {
  font-size: 0.875rem;
  color: var(--medium-grey);
  line-height: 1.5;
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-grey);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark-grey);
  text-align: left;
  gap: 1rem;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--teal);
}

.faq-question .faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--teal);
}

.faq-item.active .faq-question .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--medium-grey);
  line-height: 1.7;
}

/* Contact Form (main page) */
.contact-form {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 0.375rem;
  color: var(--dark-grey);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-grey);
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(23, 167, 183, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  display: none;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success svg {
  width: 64px;
  height: 64px;
  color: var(--green);
  margin: 0 auto 1rem;
}

.form-success h3 {
  color: var(--dark-grey);
  margin-bottom: 0.75rem;
}

.form-success p {
  color: var(--medium-grey);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* CTA Banner */
.cta-banner {
  background: var(--black);
  padding: 4rem 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.0625rem;
  line-height: 1.6;
}

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

/* Footer */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.8);
  padding-top: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #333;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  }
}

.footer-col h3 {
  color: var(--white);
  font-size: 1.0625rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--teal);
  border-radius: 2px;
}

.footer-col p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
}

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

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

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: var(--teal);
  padding-left: 0.375rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
}

.footer-contact-item a:hover {
  color: var(--teal);
}

.footer-contact-item span {
  font-size: 0.875rem;
}

.footer-bottom {
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom a {
  color: rgba(255,255,255,0.6);
}

.footer-bottom a:hover {
  color: var(--teal);
}

.footer-brand {
  margin-top: 0.25rem;
}

/* Image placeholder */
.img-placeholder {
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  padding: 1rem;
}

/* Content images */
.content-image {
  border-radius: 8px;
  overflow: hidden;
  margin: 1.5rem 0;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9375rem;
}

.comparison-table th {
  background: var(--teal);
  color: var(--white);
  padding: 0.875rem 1rem;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.comparison-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-grey);
}

.comparison-table tr:nth-child(even) td {
  background: var(--light-grey);
}

.comparison-table tr:hover td {
  background: rgba(23, 167, 183, 0.05);
}

/* Case Study */
.case-study {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  padding: 2rem;
  border-left: 4px solid var(--teal);
  margin-bottom: 1.5rem;
}

.case-study h4 {
  color: var(--dark-grey);
  margin-bottom: 1rem;
}

.case-study-detail {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

.case-study-detail strong {
  color: var(--teal);
  font-weight: 600;
  flex-shrink: 0;
}

/* Two Column */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
  }
}

/* Price card */
.price-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.price-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(23, 167, 183, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.price-card-icon svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
}

/* What Happens Next */
.steps-list {
  counter-reset: steps;
  list-style: none;
  padding: 0;
}

.steps-list li {
  counter-increment: steps;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.steps-list li::before {
  content: counter(steps);
  background: var(--teal);
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* Timeline */
.timeline-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.timeline-marker {
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  flex-shrink: 0;
}

.timeline-content strong {
  display: block;
  font-weight: 600;
  color: var(--dark-grey);
  margin-bottom: 0.125rem;
}

.timeline-content span {
  color: var(--medium-grey);
  font-size: 0.9375rem;
}

/* Utility */
.text-teal { color: var(--teal); }
.text-blue { color: var(--blue); }
.text-green { color: var(--green); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden { display: none; }

@media (max-width: 767px) {
  .hide-mobile { display: none; }
}
