:root {
  --flex-gradient: linear-gradient(135deg, #0f766e 0%, #1d4ed8 100%);
  --flex-gradient-soft: linear-gradient(135deg, #f0fdfa 0%, #eff6ff 100%);
  --flex-bg-main: #f8fafc;
  --flex-surface: #ffffff;
  --flex-text-deep: #0f172a;
  --flex-text-soft: #475569;
  --flex-text-light: #ffffff;
  --flex-accent-solid: #0d9488;
  --flex-accent-dark: #1e1b4b;
  --flex-shadow: 0 10px 25px -5px rgba(29, 78, 216, 0.1), 0 8px 10px -6px rgba(29, 78, 216, 0.1);
  --flex-shadow-hover: 0 20px 35px -5px rgba(29, 78, 216, 0.15), 0 12px 15px -8px rgba(29, 78, 216, 0.15);
  --font-heading: 'Raleway', sans-serif;
  --font-text: 'Inter', sans-serif;
  --flex-border-radius: 16px;
  --flex-padding: 10dvh;
}

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

body {
  font-family: var(--font-text);
  background-color: var(--flex-bg-main);
  color: var(--flex-text-deep);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Progress indicator on top */
.flex-scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--flex-gradient);
  width: 0;
  z-index: 99999;
  animation: flex-grow-bar linear;
  animation-timeline: scroll();
}

@keyframes flex-grow-bar {
  to { width: 100%; }
}

/* Header */
.flex-nav-shell {
  background: var(--flex-gradient);
  position: sticky;
  top: 0;
  z-index: 10000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.flex-nav-holder {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.flex-logo-combo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--flex-text-light);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  text-transform: uppercase;
}

.flex-logo-svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.flex-nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.flex-nav-links a {
  color: var(--flex-text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: opacity 0.2s ease, border-bottom 0.2s ease;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.flex-nav-links a:hover,
.flex-nav-links a.active-link {
  border-bottom: 2px solid var(--flex-surface);
  opacity: 0.95;
}

/* Hamburger CSS-only */
.flex-menu-toggle {
  display: none;
}

.flex-menu-icon {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.flex-menu-icon span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--flex-text-light);
  border-radius: 3px;
  transition: 0.3s;
}

/* Sections Viewport Animation CSS */
.flex-reveal-view {
  animation: flex-slide-up-view linear both;
  animation-timeline: view();
  animation-range: entry 5% entry 35%;
}

@keyframes flex-slide-up-view {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* General Layout Elements */
.flex-outer-section {
  padding: var(--flex-padding) 2rem;
}

.flex-inner-max {
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Section (Preset F Style) */
.flex-home-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(15, 23, 42, 0.65), rgba(15, 23, 42, 0.75)), url('img/bg.webp') no-repeat center center/cover;
  padding: 6rem 2rem;
  text-align: center;
  color: var(--flex-text-light);
}

.flex-hero-interior {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.flex-hero-interior h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.flex-hero-interior p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  opacity: 0.9;
  max-width: 650px;
}

/* Action Trigger */
.flex-trigger-action {
  display: inline-block;
  background: var(--flex-surface);
  color: var(--flex-accent-dark);
  padding: 1rem 2.5rem;
  border-radius: var(--flex-border-radius);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.flex-trigger-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.flex-trigger-action-gradient {
  background: var(--flex-gradient);
  color: var(--flex-text-light);
}

.flex-trigger-action-gradient:hover {
  filter: brightness(1.1);
}

/* Stats Row in Hero */
.flex-hero-stats-shelf {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
  width: 100%;
}

.flex-stat-unit {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 1.5rem 2rem;
  border-radius: var(--flex-border-radius);
  min-width: 180px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.flex-stat-count {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  display: block;
  margin-bottom: 0.25rem;
}

.flex-stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

/* Trust Indicator Strip */
.flex-trust-stripe {
  background: rgba(15, 23, 42, 0.9);
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.flex-trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.flex-trust-badge svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Content Segment with Horizontal Scroll-Track on Mobile */
.flex-scroll-segment {
  background: linear-gradient(rgba(248, 250, 252, 0.9), rgba(248, 250, 252, 0.9)), url('img/bg2.webp') no-repeat center center/cover;
}

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

.flex-section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--flex-accent-dark);
  text-transform: uppercase;
}

.flex-section-header p {
  color: var(--flex-text-soft);
  max-width: 600px;
  margin: 1rem auto 0 auto;
}

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

.flex-scroll-card {
  background: var(--flex-surface);
  border-radius: var(--flex-border-radius);
  padding: 2.5rem;
  box-shadow: var(--flex-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.flex-scroll-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--flex-shadow-hover);
}

.flex-card-icon-wrapper {
  background: var(--flex-gradient-soft);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--flex-accent-solid);
}

.flex-card-icon-wrapper svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.flex-scroll-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--flex-accent-dark);
  text-transform: uppercase;
}

/* Features Segment with Color-Flip */
.flex-flip-features {
  background-color: var(--flex-surface);
}

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

.flex-feature-item {
  background: var(--flex-bg-main);
  border-radius: var(--flex-border-radius);
  padding: 2.5rem;
  transition: all 0.4s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.flex-feature-item:hover {
  background: var(--flex-gradient);
  color: var(--flex-text-light);
  transform: scale(1.03);
  box-shadow: var(--flex-shadow-hover);
}

.flex-feature-item:hover .flex-feature-icon-box {
  background: rgba(255, 255, 255, 0.2);
  color: var(--flex-text-light);
}

.flex-feature-item:hover h3 {
  color: var(--flex-text-light);
}

.flex-feature-icon-box {
  background: var(--flex-surface);
  color: var(--flex-accent-solid);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.flex-feature-icon-box svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.flex-feature-item h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--flex-accent-dark);
  text-transform: uppercase;
  transition: color 0.3s ease;
}

/* Process Section (How It Works) */
.flex-process-strip {
  background: var(--flex-gradient-soft);
}

.flex-process-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
}

.flex-process-unit {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  position: relative;
  z-index: 2;
}

.flex-process-circle {
  width: 70px;
  height: 70px;
  background: var(--flex-gradient);
  color: var(--flex-text-light);
  font-size: 1.8rem;
  font-family: var(--font-heading);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: var(--flex-shadow);
}

.flex-process-unit h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--flex-accent-dark);
  text-transform: uppercase;
}

.flex-process-unit p {
  color: var(--flex-text-soft);
  font-size: 0.95rem;
}

/* CTA Split Ribbon */
.flex-cta-ribbon {
  background: var(--flex-gradient);
  color: var(--flex-text-light);
  padding: 5rem 2rem;
}

.flex-cta-ribbon-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.flex-cta-ribbon-content h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  max-width: 650px;
}

.flex-cta-ribbon-content p {
  opacity: 0.9;
  margin-top: 0.5rem;
  font-size: 1.1rem;
}

.flex-cta-btn-dark {
  background: var(--flex-accent-dark);
  color: var(--flex-text-light);
  padding: 1.2rem 3rem;
  border-radius: var(--flex-border-radius);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.flex-cta-btn-dark:hover {
  transform: translateY(-2px);
  filter: brightness(1.2);
}

/* Expert Page Layout */
.flex-expert-showcase {
  background-color: var(--flex-bg-main);
}

.flex-expert-layout {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.flex-expert-img {
  flex: 4;
  border-radius: var(--flex-border-radius);
  overflow: hidden;
  box-shadow: var(--flex-shadow-hover);
}

.flex-expert-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.flex-expert-text {
  flex: 6;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.flex-expert-text h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--flex-accent-dark);
  text-transform: uppercase;
}

.flex-expert-text h3 {
  color: var(--flex-accent-solid);
  font-size: 1.25rem;
  font-weight: 600;
}

.flex-expert-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 1.5rem;
}

.flex-expert-stat-card {
  background: var(--flex-surface);
  padding: 1.5rem;
  border-radius: var(--flex-border-radius);
  box-shadow: var(--flex-shadow);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.flex-expert-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--flex-accent-solid);
}

.flex-expert-stat-desc {
  font-size: 0.85rem;
  color: var(--flex-text-soft);
  text-transform: uppercase;
}

/* Reserve Page Setup */
.flex-reserve-split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 4rem;
  align-items: start;
}

.flex-reserve-info {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.flex-reserve-info h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--flex-accent-dark);
  text-transform: uppercase;
}

.flex-reserve-cards-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.flex-reserve-bullet-card {
  background: var(--flex-surface);
  padding: 1.5rem;
  border-radius: var(--flex-border-radius);
  box-shadow: var(--flex-shadow);
  display: flex;
  gap: 1rem;
}

.flex-reserve-circle-num {
  width: 36px;
  height: 36px;
  background: var(--flex-gradient-soft);
  color: var(--flex-accent-solid);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
}

.flex-bullet-text h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--flex-accent-dark);
  margin-bottom: 0.25rem;
}

.flex-bullet-text p {
  font-size: 0.9rem;
  color: var(--flex-text-soft);
}

.flex-reserve-form-container {
  background: var(--flex-surface);
  padding: 3rem;
  border-radius: var(--flex-border-radius);
  box-shadow: var(--flex-shadow-hover);
}

.flex-reserve-form-container h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--flex-accent-dark);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.flex-input-group {
  margin-bottom: 1.5rem;
}

.flex-input-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--flex-text-deep);
}

.flex-input-group input,
.flex-input-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  font-family: var(--font-text);
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}

.flex-input-group input:focus,
.flex-input-group textarea:focus {
  outline: none;
  border-color: var(--flex-accent-solid);
}

.flex-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.flex-checkbox-row input {
  margin-top: 0.25rem;
}

.flex-checkbox-row label {
  font-size: 0.85rem;
  color: var(--flex-text-soft);
}

.flex-checkbox-row a {
  color: var(--flex-accent-solid);
  text-decoration: underline;
}

.flex-reserve-form-btn {
  width: 100%;
  background: var(--flex-gradient);
  color: var(--flex-text-light);
  padding: 1rem;
  border: none;
  border-radius: var(--flex-border-radius);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: var(--flex-shadow);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.flex-reserve-form-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.flex-mailto-link {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  color: var(--flex-accent-solid);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.flex-mailto-link:hover {
  text-decoration: underline;
}

/* FAQ Setup */
.flex-faq-strip {
  background-color: var(--flex-surface);
}

.flex-faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.flex-faq-each {
  background: var(--flex-bg-main);
  padding: 2rem;
  border-radius: var(--flex-border-radius);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.flex-faq-each h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--flex-accent-dark);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.flex-faq-each p {
  color: var(--flex-text-soft);
  font-size: 0.95rem;
}

/* Legal Documents and Thank You Styles */
.flex-legal-body {
  padding: var(--flex-padding) 2rem;
  background-color: var(--flex-surface);
}

.flex-legal-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.flex-legal-container h1 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--flex-accent-dark);
  text-transform: uppercase;
}

.flex-legal-container h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--flex-accent-dark);
  margin-top: 1rem;
}

.flex-thanks-strip {
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.7)), url('img/bg3.webp') no-repeat center center/cover;
  color: var(--flex-text-light);
  padding: 4rem 2rem;
}

.flex-thanks-container {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.flex-thanks-container h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
}

.flex-thanks-container p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Footer Group */
.flex-footer-shell {
  background-color: var(--flex-accent-dark);
  color: var(--flex-text-light);
  padding: 4rem 2rem 2rem 2rem;
}

.flex-footer-columns {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 3rem;
  margin-bottom: 2rem;
}

.flex-footer-desc h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.flex-footer-desc p {
  font-size: 0.9rem;
  opacity: 0.7;
}

.flex-footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.flex-footer-links-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.flex-footer-links-col a {
  color: var(--flex-text-light);
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.flex-footer-links-col a:hover {
  opacity: 1;
}

.flex-footer-disclaimer {
  max-width: 1200px;
  margin: 0 auto 1.5rem auto;
  font-size: 0.8rem;
  opacity: 0.5;
  text-align: center;
}

.flex-footer-copyright {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* Cookies Strip */
#flex-cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #0f172a;
  color: #ffffff;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  z-index: 99999;
  box-shadow: 0 -5px 25px rgba(0,0,0,0.25);
  animation: flexSlideUp 0.5s ease-out;
}

@keyframes flexSlideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.flex-cookie-msg {
  font-size: 0.9rem;
  line-height: 1.4;
  opacity: 0.9;
}

.flex-cookie-btns {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.flex-cookie-accept-btn {
  background: var(--flex-gradient);
  border: none;
  color: #ffffff;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.flex-cookie-decline-btn {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.flex-cookie-accept-btn:hover {
  filter: brightness(1.1);
}

.flex-cookie-decline-btn:hover {
  background: rgba(255,255,255,0.1);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .flex-scroll-track {
    grid-template-columns: repeat(3, 1fr);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1.5rem;
  }

  .flex-scroll-card {
    scroll-snap-align: start;
    min-width: 280px;
  }

  .flex-features-grid {
    grid-template-columns: 1fr;
  }

  .flex-process-line {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .flex-expert-layout {
    flex-direction: column;
  }

  .flex-reserve-split {
    grid-template-columns: 1fr;
  }

  .flex-cta-ribbon-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .flex-menu-icon {
    display: flex;
  }

  .flex-scroll-track {
    display: flex;
  }

  .flex-nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--flex-gradient);
    padding: 2rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }

  .flex-menu-toggle:checked ~ .flex-nav-links {
    display: flex;
  }

  .flex-menu-toggle:checked ~ .flex-menu-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .flex-menu-toggle:checked ~ .flex-menu-icon span:nth-child(2) {
    opacity: 0;
  }

  .flex-menu-toggle:checked ~ .flex-menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
  }

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

  .flex-expert-stats {
    grid-template-columns: 1fr;
  }
}