/* ==========================================================================
   Brightside Rehab — Fresh Start #8 + Classic Multi-Page #1
   Colors: Mint #3EB489, Soft Yellow #F7DC6F, Sky Blue #85C1E9
   Fonts: Quicksand (headings), Nunito (body)
   ========================================================================== */

/* --- CSS Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito', 'Open Sans', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #2E4A3E;
  background: #FEFFFE;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #3EB489; text-decoration: none; transition: color .3s; }
a:hover { color: #2d8a68; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', 'Comfortaa', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #2E4A3E;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: .75rem; }
h4 { font-size: 1.25rem; margin-bottom: .5rem; }
p { margin-bottom: 1rem; }

/* --- Skip Link --- */
.skip-link {
  position: absolute; top: -100%; left: 0;
  background: #3EB489; color: #fff; padding: .5rem 1rem; z-index: 10000;
  font-weight: 700;
}
.skip-link:focus { top: 0; }

/* --- Container --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

/* --- Header / Navbar --- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 12px rgba(62,180,137,.12);
  transition: box-shadow .3s;
}
.header-top {
  background: #3EB489;
  color: #fff;
  padding: .35rem 0;
  font-size: .875rem;
  text-align: center;
}
.header-top a { color: #fff; font-weight: 600; }
.header-top a:hover { color: #F7DC6F; }
.navbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: .75rem 1.25rem;
  max-width: 1200px; margin: 0 auto;
}
.navbar .logo {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700; font-size: 1.5rem;
  color: #3EB489;
}
.navbar .logo span { color: #2E4A3E; }
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a {
  color: #2E4A3E; font-weight: 600; font-size: .95rem;
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: #3EB489; transition: width .3s;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links .btn-cta {
  background: #3EB489; color: #fff !important; padding: .5rem 1.25rem;
  border-radius: 24px; font-weight: 700; font-size: .95rem;
  transition: background .3s, transform .3s;
}
.nav-links .btn-cta::after { display: none; }
.nav-links .btn-cta:hover { background: #2d8a68; transform: translateY(-1px); }

/* Mobile menu toggle */
.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  font-size: 1.5rem; color: #2E4A3E;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff;
  margin-top: 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(62,180,137,.75) 0%, rgba(133,193,233,.55) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 720px; padding: 2rem 1.25rem;
}
.hero h1 { font-size: 2.75rem; color: #fff; margin-bottom: 1rem; }
.hero p { font-size: 1.2rem; margin-bottom: 1.5rem; opacity: .95; }
.hero .btn-primary { font-size: 1.1rem; padding: .85rem 2rem; }

/* --- Buttons --- */
.btn-primary {
  display: inline-block;
  background: #3EB489; color: #fff;
  padding: .75rem 1.75rem;
  border-radius: 24px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700; font-size: 1rem;
  transition: background .3s, transform .3s, box-shadow .3s;
  border: none; cursor: pointer;
}
.btn-primary:hover {
  background: #2d8a68; color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(62,180,137,.35);
}
.btn-secondary {
  display: inline-block;
  background: transparent; color: #3EB489;
  padding: .75rem 1.75rem;
  border: 2px solid #3EB489;
  border-radius: 24px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700; font-size: 1rem;
  transition: all .3s;
}
.btn-secondary:hover {
  background: #3EB489; color: #fff;
}
.btn-yellow {
  background: #F7DC6F; color: #2E4A3E;
}
.btn-yellow:hover {
  background: #f0d04d; color: #2E4A3E;
  box-shadow: 0 4px 16px rgba(247,220,111,.4);
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: 1rem 0; font-size: .875rem; color: #6a8a7a;
}
.breadcrumbs a { color: #3EB489; }
.breadcrumbs span { margin: 0 .35rem; }

/* --- Trust Bar --- */
.trust-bar {
  background: #F0FFF4;
  padding: 1.5rem 0;
  text-align: center;
  border-bottom: 1px solid rgba(62,180,137,.15);
}
.trust-items {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 2rem;
}
.trust-item {
  display: flex; align-items: center; gap: .5rem;
  font-weight: 600; color: #2E4A3E; font-size: .95rem;
}
.trust-item .icon { font-size: 1.5rem; color: #3EB489; }

/* --- Section Styles --- */
.section {
  padding: 4rem 0;
}
.section-alt {
  background: #F0FFF4;
}
.section-title {
  text-align: center; margin-bottom: 2.5rem;
}
.section-title h2 { margin-bottom: .5rem; }
.section-title p { color: #6a8a7a; max-width: 600px; margin: 0 auto; }

/* --- Card Grid --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(62,180,137,.08);
  transition: transform .3s, box-shadow .3s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(62,180,137,.15);
}
.card-img {
  width: 100%; height: 200px; object-fit: cover;
}
.card-body {
  padding: 1.25rem;
}
.card-body h3 { margin-bottom: .5rem; }
.card-body p { font-size: .95rem; color: #4a6a5a; margin-bottom: .75rem; }

/* --- Program Cards (4 cols on desktop) --- */
.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* --- Stats / Counter Section --- */
.stats-row {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 2rem;
  text-align: center;
}
.stat-item h3 { font-size: 2.5rem; color: #3EB489; }
.stat-item p { color: #6a8a7a; font-weight: 600; }

/* --- Testimonials --- */
.testimonial-slider {
  max-width: 800px; margin: 0 auto; text-align: center;
}
.testimonial-card {
  background: #fff; border-radius: 16px; padding: 2rem;
  box-shadow: 0 4px 20px rgba(62,180,137,.08);
  margin-bottom: 1.5rem;
}
.testimonial-card blockquote {
  font-size: 1.1rem; font-style: italic; color: #3d5a4e;
  margin-bottom: 1rem; line-height: 1.8;
}
.testimonial-card .author {
  font-weight: 700; color: #3EB489;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, #3EB489 0%, #85C1E9 100%);
  color: #fff; text-align: center; padding: 3.5rem 1.25rem;
  border-radius: 20px;
  margin: 2rem 0;
}
.cta-banner h2 { color: #fff; margin-bottom: .75rem; }
.cta-banner p { opacity: .95; margin-bottom: 1.5rem; font-size: 1.1rem; }
.cta-banner .btn-primary {
  background: #fff; color: #3EB489;
}
.cta-banner .btn-primary:hover {
  background: #F7DC6F; color: #2E4A3E;
}

/* --- Two Column Layout (inner pages) --- */
.two-col {
  display: grid; grid-template-columns: 1fr 320px; gap: 2.5rem;
  align-items: start;
}
.two-col .main-content { min-width: 0; }

/* --- Sidebar --- */
.sidebar {
  position: sticky; top: 120px;
}
.sidebar-box {
  background: #F0FFF4; border-radius: 16px; padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar-box h4 { color: #3EB489; margin-bottom: .75rem; }
.sidebar-links { display: flex; flex-direction: column; gap: .5rem; }
.sidebar-links a {
  color: #2E4A3E; font-weight: 500; padding: .35rem .5rem;
  border-radius: 8px; transition: background .2s;
}
.sidebar-links a:hover { background: rgba(62,180,137,.1); }

/* --- FAQ Accordion --- */
.faq-item {
  border-bottom: 1px solid rgba(62,180,137,.15);
  margin-bottom: .5rem;
}
.faq-question {
  width: 100%; background: none; border: none;
  text-align: left; padding: 1rem 0;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.05rem; font-weight: 700; color: #2E4A3E;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
}
.faq-question::after {
  content: '+'; font-size: 1.5rem; color: #3EB489;
  transition: transform .3s;
}
.faq-question.open::after { content: '−'; }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease;
  padding: 0 0 0 0;
}
.faq-answer.open {
  max-height: 600px;
  padding-bottom: 1rem;
}
.faq-answer p { color: #4a6a5a; }

/* --- Blog Grid --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.blog-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(62,180,137,.08);
  transition: transform .3s, box-shadow .3s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(62,180,137,.15);
}
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 1.25rem; }
.blog-card-body .category {
  display: inline-block; background: #F0FFF4; color: #3EB489;
  padding: .2rem .6rem; border-radius: 8px; font-size: .8rem;
  font-weight: 600; margin-bottom: .5rem;
}
.blog-card-body h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.blog-card-body p { font-size: .9rem; color: #6a8a7a; }

/* --- Contact Info --- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.contact-box {
  background: #F0FFF4; border-radius: 16px; padding: 1.5rem;
  text-align: center;
}
.contact-box .icon { font-size: 2rem; color: #3EB489; margin-bottom: .75rem; }
.contact-box h3 { margin-bottom: .5rem; }
.contact-box a { font-size: 1.1rem; font-weight: 700; }

/* --- Google Map --- */
.map-container {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(62,180,137,.1);
  margin: 2rem 0;
}
.map-container iframe { width: 100%; height: 400px; border: 0; display: block; }

/* --- Insurance Grid --- */
.insurance-grid {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
}
.insurance-tag {
  background: #fff; border: 2px solid #3EB489; border-radius: 24px;
  padding: .5rem 1.25rem; font-weight: 600; color: #2E4A3E; font-size: .9rem;
}

/* --- Timeline / Steps --- */
.steps-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.step-item {
  background: #fff; border-radius: 16px; padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(62,180,137,.08);
  position: relative;
}
.step-number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: #3EB489; color: #fff; font-weight: 700; font-size: 1.25rem;
  margin-bottom: .75rem;
}

/* --- Footer --- */
.site-footer {
  background: #2E4A3E;
  color: #c0d9cf;
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-col h4 {
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.footer-col p { font-size: .9rem; line-height: 1.6; }
.footer-col a { color: #c0d9cf; font-size: .9rem; transition: color .3s; }
.footer-col a:hover { color: #3EB489; }
.footer-links { display: flex; flex-direction: column; gap: .4rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: .85rem;
}
.footer-bottom a { color: #3EB489; }

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: linear-gradient(135deg, #3EB489 0%, #85C1E9 100%);
  color: #fff; text-align: center;
  padding: 4rem 1.25rem 3rem;
  margin-top: 100px;
}
.page-hero h1 { color: #fff; margin-bottom: .5rem; }
.page-hero p { opacity: .9; max-width: 600px; margin: 0 auto; }

/* --- Amenity / Feature List --- */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.feature-item {
  display: flex; align-items: center; gap: .5rem;
  font-weight: 500; padding: .5rem 0;
}
.feature-item::before {
  content: '✓';
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 24px; height: 24px; border-radius: 50%;
  background: #3EB489; color: #fff; font-size: .75rem; font-weight: 700;
}

/* --- Gallery Grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}
.gallery-grid img {
  width: 100%; height: 220px; object-fit: cover;
  border-radius: 12px;
  transition: transform .3s;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* --- Daily Schedule Table --- */
.schedule-table {
  width: 100%; border-collapse: collapse; margin: 1rem 0;
}
.schedule-table th,
.schedule-table td {
  padding: .75rem 1rem; text-align: left;
  border-bottom: 1px solid rgba(62,180,137,.15);
}
.schedule-table th {
  background: #F0FFF4; color: #3EB489;
  font-family: 'Quicksand', sans-serif; font-weight: 700;
}

/* --- Privacy Page --- */
.privacy-content h2 { margin-top: 2rem; }
.privacy-content h3 { margin-top: 1.5rem; }
.privacy-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.privacy-content ul li { list-style: disc; margin-bottom: .35rem; color: #4a6a5a; }

/* --- Hero Buttons --- */
.hero-buttons {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  margin-top: .5rem;
}
.hero-buttons .btn-secondary {
  border-color: #fff; color: #fff;
}
.hero-buttons .btn-secondary:hover {
  background: #fff; color: #3EB489;
}

/* --- Outline Button --- */
.btn-outline {
  display: inline-block;
  background: transparent; color: #3EB489;
  padding: .55rem 1.25rem;
  border: 2px solid #3EB489;
  border-radius: 24px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700; font-size: .9rem;
  transition: all .3s;
}
.btn-outline:hover {
  background: #3EB489; color: #fff;
}

/* --- Section Subtitle --- */
.section-subtitle {
  color: #6a8a7a; max-width: 600px; margin: 0 auto 2rem; text-align: center;
}

/* --- Features Grid (Why Choose Us) --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.features-grid .feature-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 1.5rem;
  background: #fff; border-radius: 16px;
  box-shadow: 0 4px 20px rgba(62,180,137,.08);
}
.features-grid .feature-item::before { display: none; }
.feature-icon {
  font-size: 2.25rem; color: #3EB489; margin-bottom: .75rem;
  display: block;
}

/* --- Amenities Grid --- */
.amenities-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center;
}
.amenities-images {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.amenities-images img {
  width: 100%; height: 220px; object-fit: cover; border-radius: 12px;
}
.amenities-text p { font-size: 1.05rem; color: #4a6a5a; }

/* --- Testimonial Grid --- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* --- Trust Icon --- */
.trust-icon { font-size: 1.5rem; color: #3EB489; }

/* --- Breadcrumb (inner pages) --- */
.breadcrumb {
  padding: .75rem 0; font-size: .875rem; color: rgba(255,255,255,.8);
  margin-top: .75rem;
}
.breadcrumb a { color: #fff; font-weight: 600; }
.breadcrumb a:hover { color: #F7DC6F; }
.breadcrumb span { color: rgba(255,255,255,.9); }

/* --- Blog Page Styles --- */
.blog-hero { /* extends .page-hero */ }

.blog-categories {
  padding: 1.5rem 0;
  background: #F0FFF4;
  border-bottom: 1px solid rgba(62,180,137,.15);
}
.category-tags {
  display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center;
}
.category-tag {
  background: #fff; color: #2E4A3E;
  padding: .45rem 1.1rem;
  border: 2px solid rgba(62,180,137,.25);
  border-radius: 24px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600; font-size: .9rem;
  cursor: pointer; transition: all .3s;
}
.category-tag:hover,
.category-tag.active {
  background: #3EB489; color: #fff; border-color: #3EB489;
}

/* Featured Article */
.blog-featured {
  padding: 3rem 0;
}
.featured-article {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem;
  align-items: start;
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(62,180,137,.1);
}
.featured-image {
  position: relative; overflow: hidden;
}
.featured-image img {
  width: 100%; height: 100%; min-height: 350px; object-fit: cover;
}
.featured-content {
  padding: 2rem 2rem 2rem 0;
}
.featured-content h2 { font-size: 1.6rem; margin-bottom: .75rem; }
.featured-content h3 { font-size: 1.2rem; margin-top: 1.5rem; }
.featured-content p { font-size: .95rem; color: #4a6a5a; }
.featured-content ul, .featured-content ol {
  padding-left: 1.5rem; margin-bottom: 1rem;
}
.featured-content ul li { list-style: disc; margin-bottom: .35rem; color: #4a6a5a; }
.featured-content ol li { list-style: decimal; margin-bottom: .35rem; color: #4a6a5a; }

/* Article Meta */
.article-meta {
  font-size: .85rem; color: #6a8a7a; margin-bottom: .75rem;
  font-weight: 500;
}

/* Category Badges */
.category-badge {
  position: absolute; top: 1rem; left: 1rem;
  padding: .3rem .75rem; border-radius: 20px;
  font-size: .8rem; font-weight: 700; color: #fff;
  z-index: 1;
}
.badge-addiction { background: #e74c3c; }
.badge-recovery { background: #3EB489; }
.badge-family { background: #85C1E9; }
.badge-mental { background: #9b59b6; }
.badge-news { background: #F7DC6F; color: #2E4A3E; }

/* Blog Grid Section */
.blog-grid-section {
  padding: 3rem 0;
  background: #F0FFF4;
}

/* Blog Card Image & Content wrappers */
.blog-card-image {
  position: relative; overflow: hidden;
}
.blog-card-image img {
  width: 100%; height: 220px; object-fit: cover;
  transition: transform .3s;
}
.blog-card:hover .blog-card-image img { transform: scale(1.03); }
.blog-card-content {
  padding: 1.25rem;
}
.blog-card-content h2 { font-size: 1.2rem; margin-bottom: .5rem; }
.blog-card-content h3 { font-size: 1.05rem; margin-top: 1.25rem; }
.blog-card-content p { font-size: .95rem; color: #4a6a5a; }
.blog-card-content ul, .blog-card-content ol {
  padding-left: 1.5rem; margin-bottom: 1rem;
}
.blog-card-content ul li { list-style: disc; margin-bottom: .35rem; color: #4a6a5a; }
.blog-card-content ol li { list-style: decimal; margin-bottom: .35rem; color: #4a6a5a; }

/* Blog CTA */
.blog-cta {
  padding: 3rem 0;
}
.cta-box {
  background: linear-gradient(135deg, #3EB489 0%, #85C1E9 100%);
  color: #fff; text-align: center;
  padding: 3rem 2rem; border-radius: 20px;
}
.cta-box h2 { color: #fff; margin-bottom: .75rem; }
.cta-box p { opacity: .95; margin-bottom: 1.5rem; font-size: 1.1rem; }
.cta-buttons {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}
.cta-box .btn-primary {
  background: #fff; color: #3EB489;
}
.cta-box .btn-primary:hover {
  background: #F7DC6F; color: #2E4A3E;
}
.cta-box .btn-secondary {
  border-color: #fff; color: #fff;
}
.cta-box .btn-secondary:hover {
  background: #fff; color: #3EB489;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .two-col { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .program-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-article { grid-template-columns: 1fr; }
  .featured-content { padding: 1.5rem; }
  .featured-image img { min-height: 280px; }
  .amenities-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
  }
  .nav-links.active { display: flex; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .hero { min-height: 450px; margin-top: 90px; }
  .hero h1 { font-size: 2rem; }
  .page-hero { margin-top: 90px; padding: 3rem 1.25rem 2rem; }
  .program-grid { grid-template-columns: 1fr; }
  .stats-row { gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .trust-items { flex-direction: column; align-items: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
}
