/* Free Advocacy Page Styles */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    sans-serif;
  background-color: #ffffff;
  color: #000000;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  padding-top: 80px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
  background-color: #f8f8f8;
  border-bottom: 1px solid #e5e5e5;
  padding: 1rem 0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  color: #666666;
  font-size: 0.875rem;
}

.breadcrumb-item a {
  color: #666666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #000000;
}

.breadcrumb-item.current {
  color: #000000;
  font-weight: 500;
}

.breadcrumb-arrow {
  width: 16px;
  height: 16px;
  margin: 0 0.5rem;
  color: #666666;
}

/* Hero Section */
.hero {
  padding: 5rem 0 4rem;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
  border-bottom: 1px solid #e5e5e5;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #000000;
  background-color: #f0f0f0;
  padding: 0.5rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #000000;
}

.hero-description {
  font-size: 1.25rem;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid #e5e5e5;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #666666;
}

.trust-item > svg {
  width: 18px;
  height: 18px;
  color: #000000;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .btn {
    justify-content: center;
  }
}

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

.btn-primary:hover {
  background-color: #333333;
}

.btn-secondary {
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #e5e5e5;
}

.btn-secondary:hover {
  background-color: #fafafa;
  border-color: #000000;
}

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

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-header {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: #000000;
}

.section-description {
  font-size: 1.125rem;
  color: #666666;
  line-height: 1.6;
}

/* Program Overview Section */
.program-overview {
  background-color: #ffffff;
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.step-card {
  position: relative;
  padding: 2rem;
  background-color: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: #000000;
  background-color: #ffffff;
}

.step-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #cccccc;
  letter-spacing: 0.05em;
}

.step-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.step-icon > svg {
  width: 24px;
  height: 24px;
  color: #ffffff;
}

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #000000;
}

.step-card p {
  color: #666666;
  line-height: 1.6;
  font-size: 0.9375rem;
}

/* Story Preview Section - Clean Editorial */
.story-preview {
  background-color: #ffffff;
  padding: 6rem 0;
}

.container-full {
  max-width: 100%;
  padding: 0;
}

.section-header-minimal {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header-minimal h2 {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: #000000;
}



/* Story Carousel */
.story-carousel {
  margin-bottom: 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.carousel-wrapper {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.carousel-slides {
  position: relative;
  overflow: hidden;
}

.story-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.story-slide.active {
  display: block;
  opacity: 1;
}

/* Slide Layouts */
.slide-layout {
  min-height: 600px;
  display: flex;
  align-items: center;
}

.slide-layout.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.slide-layout.split-reverse {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.slide-layout.centered {
  justify-content: center;
  padding: 6rem 4rem;
}

.slide-layout.dark-full {
  background-color: #000000;
  padding: 6rem 4rem;
}

/* Slide Content */
.slide-content,
.slide-visual {
  padding: 4rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide-visual {
  background-color: #fafafa;
}

.slide-visual.dark {
  background-color: #000000;
}

.slide-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999999;
  margin-bottom: 2rem;
}

.slide-title {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #000000;
  margin-bottom: 2rem;
}

.slide-quote,
.slide-text {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #666666;
  margin: 0;
}

/* Stats Display */
.stat-display {
  text-align: center;
  padding: 4rem;
}

.stat-huge {
  display: block;
  font-size: 12rem;
  font-weight: 300;
  line-height: 1;
  color: #000000;
  margin-bottom: 1rem;
}

.stat-caption {
  display: block;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #666666;
}

.stats-vertical {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

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

.stat-item .num {
  display: block;
  font-size: 6rem;
  font-weight: 300;
  line-height: 1;
  color: #000000;
  margin-bottom: 0.5rem;
}

.stat-item .label {
  display: block;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #666666;
}

/* Document Preview */
.doc-preview {
  padding: 3rem;
}

.doc-line {
  height: 2px;
  background-color: #333333;
  margin-bottom: 1.5rem;
  width: 100%;
}

.doc-line.short {
  width: 60%;
}

.doc-highlight {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  padding: 1.5rem;
  background-color: #333333;
  text-align: center;
  margin-top: 2rem;
}

/* Result Grid */
.slide-content-center {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

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

.result-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background-color: #fafafa;
  border: 1px solid #e5e5e5;
}

.result-box > svg {
  width: 24px;
  height: 24px;
  color: #000000;
  flex-shrink: 0;
}

.result-box span {
  font-size: 1rem;
  color: #000000;
  font-weight: 500;
}

/* Dark Slide Content */
.slide-content-light {
  max-width: 800px;
  margin: 0 auto;
}

.slide-label-light {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #666666;
  margin-bottom: 2rem;
  display: block;
}

.slide-title-light {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 3rem;
}

.change-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.change-item {
  font-size: 1.125rem;
  color: #cccccc;
  padding: 1.5rem;
  background-color: #111111;
  border-left: 2px solid #333333;
}

/* Carousel Navigation */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background-color: #ffffff; 
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 100;
}

.carousel-nav:hover {
  background-color: #000000;
  border-color: #000000;
}

.carousel-nav:hover > svg {
  color: #ffffff;
}

.carousel-nav > svg {
  width: 24px;
  height: 24px;
  color: #000000;
  transition: color 0.2s ease;
}

.carousel-nav.prev {
  left: 2rem;
}

.carousel-nav.next {
  right: 2rem;
}

/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 3rem 0;
  background-color: #fafafa;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #d0d0d0;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.indicator:hover {
  background-color: #666666;
}

.indicator.active {
  background-color: #000000;
  width: 40px;
  border-radius: 5px;
}

/* Comparison Stats (Carousel 3) */
.comparison-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 4rem;
}

.stat-before,
.stat-after {
  text-align: center;
}

.stat-num {
  display: block;
  font-size: 5rem;
  font-weight: 300;
  line-height: 1;
  color: #000000;
  margin-bottom: 0.75rem;
}

.stat-text {
  display: block;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #666666;
}

.stat-arrow {
  font-size: 3rem;
  color: #cccccc;
  font-weight: 300;
}

/* Action Timeline (Carousel 3) */
.action-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.action-step {
  font-size: 1.25rem;
  color: #cccccc;
  padding: 1.5rem;
  background-color: #111111;
  border-left: 3px solid #333333;
}

/* Outcome Display (Carousel 3) */
.outcome-display {
  text-align: center;
  padding: 3rem;
}

.outcome-number {
  font-size: 10rem;
  font-weight: 300;
  line-height: 1;
  color: #000000;
  margin-bottom: 1rem;
}

.outcome-text {
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #666666;
  margin-bottom: 2rem;
}

.outcome-subtext {
  font-size: 1rem;
  color: #999999;
  font-style: italic;
}

/* Story Note */
.story-note {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.story-note p {
  font-size: 1.125rem;
  color: #666666;
  font-style: italic;
  margin: 0;
}

/* What You Get Section */
.what-you-get {
  background-color: #ffffff;
}

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

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

.service-item > svg {
  width: 32px;
  height: 32px;
  color: #000000;
  margin-bottom: 1rem;
}

.service-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #000000;
}

.service-item p {
  color: #666666;
  line-height: 1.6;
  font-size: 0.9375rem;
}

/* Value Callout */
.value-callout {
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem;
  background-color: #fafafa;
  border-left: 4px solid #000000;
  text-align: center;
}

.value-callout h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #000000;
}

.value-callout p {
  font-size: 1.125rem;
  color: #666666;
  line-height: 1.7;
  margin: 0;
}

.value-callout strong {
  color: #000000;
  font-weight: 600;
}

/* What We Ask Section */
.what-we-ask {
  background-color: #fafafa;
}

.ask-content {
  max-width: 1200px;
  margin: 0 auto;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.requirement-item {
  background-color: #ffffff;
  padding: 2rem;
  border: 1px solid #e5e5e5;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.requirement-item:hover {
  border-color: #000000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.req-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.req-icon > svg {
  width: 24px;
  height: 24px;
  color: #ffffff;
}

.requirement-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #000000;
  line-height: 1.3;
}

.requirement-item p {
  color: #666666;
  line-height: 1.7;
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.req-frequency {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #000000;
  background-color: #f0f0f0;
  padding: 0.375rem 0.75rem;
  border-radius: 2px;
}

/* Transparency Box */
.transparency-box {
  display: flex;
  gap: 2rem;
  padding: 2.5rem;
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 2px;
}

.transparency-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  border-radius: 2px;
}

.transparency-icon > svg {
  width: 24px;
  height: 24px;
  color: #ffffff;
}

.transparency-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #000000;
}

.transparency-content p {
  color: #666666;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.transparency-content p:last-child {
  margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
  background-color: #ffffff;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 0;
  background: none;
  border: none;
  font-size: 1.125rem;
  font-weight: 500;
  color: #000000;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}

.faq-question:hover {
  color: #666666;
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: #000000;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

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

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1.75rem;
}

.faq-answer p {
  color: #666666;
  line-height: 1.7;
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer a {
  color: #000000;
  text-decoration: underline;
}

.faq-answer a:hover {
  text-decoration: none;
}

/* Final CTA Section */
.final-cta {
  background-color: #fafafa;
}

.cta-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 3rem;
  background-color: #000000;
  color: #ffffff;
  border-radius: 2px;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.25rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.cta-content > p {
  font-size: 1.125rem;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

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

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

.cta-card .btn-primary:hover {
  background-color: #f0f0f0;
}

.cta-card .btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.cta-card .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cta-note {
  font-size: 0.875rem;
  color: #999999;
  margin: 0;
}

.cta-note a {
  color: #ffffff;
  text-decoration: underline;
}

.cta-note a:hover {
  text-decoration: none;
}

/* Footer */
.site-footer {
  background-color: #000000;
  color: #ffffff;
  padding: 4rem 0 2rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #333333;
}

.footer-brand h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-brand p {
  color: #999999;
  line-height: 1.6;
  font-size: 0.9375rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: #999999;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

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

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

.footer-legal p {
  color: #666666;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a {
  color: #666666;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .slide-layout.split,
  .slide-layout.split-reverse {
    grid-template-columns: 1fr;
  }

  .slide-title,
  .slide-title-light {
    font-size: 2.5rem;
  }

  .stat-huge {
    font-size: 8rem;
  }

  .stat-item .num {
    font-size: 4rem;
  }

  .result-grid,
  .change-list {
    grid-template-columns: 1fr;
  }

  .carousel-nav {
    width: 48px;
    height: 48px;
  }

  .carousel-nav.prev {
    left: 1rem;
  }

  .carousel-nav.next {
    right: 1rem;
  }

  .comparison-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .stat-num {
    font-size: 4rem;
  }

  .stat-arrow {
    transform: rotate(90deg);
  }

  .outcome-number {
    font-size: 7rem;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 60px;
  }

  .container {
    padding: 0 1rem;
  }

  .section-header-minimal h2 {
    font-size: 2rem;
  }

  .slide-content,
  .slide-visual {
    padding: 2rem 4rem;
  }

  .slide-layout.centered,
  .slide-layout.dark-full {
    padding: 3rem 4rem;
  }

  .slide-title,
  .slide-title-light {
    font-size: 2rem;
  }

  .slide-quote,
  .slide-text {
    font-size: 1rem;
  }

  .stat-huge {
    font-size: 5rem;
  }

  .stat-item .num {
    font-size: 3rem;
  }

  .slide-layout {
    min-height: 500px;
  }

  .carousel-nav.prev {
    left: 0.5rem;
  }

  .carousel-nav.next {
    right: 0.5rem;
  }

  .stat-num {
    font-size: 3rem;
  }

  .outcome-number {
    font-size: 5rem;
  }

  .outcome-text {
    font-size: 1rem;
  }

  .action-step {
    font-size: 1rem;
  }

  .hero {
    padding: 3rem 0 2.5rem;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-description {
    font-size: 1.125rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-trust {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  section {
    padding: 3rem 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .how-it-works-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .requirements-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .value-callout {
    padding: 2rem;
  }

  .value-callout h3 {
    font-size: 1.25rem;
  }

  .value-callout p {
    font-size: 1rem;
  }

  .transparency-box {
    flex-direction: column;
    padding: 2rem;
  }

  .cta-card {
    padding: 3rem 2rem;
  }

  .cta-content h2 {
    font-size: 1.75rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-legal-links {
    justify-content: center;
  }
}

