* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    cursor: default;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
    }

html {
  scroll-behavior: smooth;
}

body, html {
  min-height: 100%;
      font-family: 'Inter', sans-serif;
      color: #ffffff;
        overflow-x: hidden;
    }

button:hover,
a:hover {
  outline: 2px solid #C2410C;
  outline-offset: 4px;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: 2px solid #C2410C; 
  outline-offset: 2px;
}

sup {
    font-size: 9px;
}

abbr {
    text-decoration: none;
    font-weight: bolder;
    color: #000;
    cursor: pointer;
}

    .hero-section {
      position: relative;
      min-height: 100vh;
      display: flex;
      padding: 0rem 0;
      flex-direction: column;
      background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)),
        url("images/lv_0_20260702144113.jpg") no-repeat center center;
      background-attachment: fixed;
        background-size: cover;
    }

    .hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    .content-wrapper {
      position: relative;
      z-index: 2;
      width: 100%;
      padding: 1.4rem 4%;
      max-width: 1400px;
      margin: 0 auto;
    }

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.25rem 0.75rem 2rem;
  border-radius: 50px;
  background: rgba(25, 25, 25, 0.75);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  z-index: 9999;
  position: fixed; 
  left: 50%;
  transform: translateX(-50%);  
  width: 92%;
  max-width: 1280px;            
}

.logo a {
  color: aliceblue;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
    cursor: pointer;
}

/* Hide Mobile Buttons on Desktop */
.menu-btn, .close-btn {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
}

/* Wrapper for the rest of the nav items */
.nav-menu {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  align-items: center;
    z-index: 9999;
  margin-left: 2.5rem;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
  cursor: pointer;
}

.nav-link:hover {
  color: #ffffff;
}

/* The Active State Style */
.nav-link.active {
  background-color: #C2410C; /* Your brand orange */
  color: #ffffff; /* Ensures text stays white on the orange background */
  padding: 0.4rem 1rem; /* Gives the background some breathing room around the text */
  border-radius: 50px; /* Gives it the same pill-shape as your buttons */
  font-weight: 600; /* Makes it slightly bolder to stand out */
}

/* Optional: Update the base nav-link so the padding transition looks smooth */
.nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease; /* Changed from just 'color' to 'all' */
  cursor: pointer;
  padding: 0.4rem 1rem; /* Add invisible padding to non-active links to prevent jumping */
  border-radius: 50px;
}

.nav-right {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Buttons */
.btn {
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
  background: transparent;
}

.btn-outline:hover {
  background: #ffffff;
  color: #000000;
}

.btn-solid {
  background: #ffffff;
  color: #000000;
  border: 1px solid #ffffff;
}

.btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.arrow {
  margin-left: 0.3rem;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.btn-solid:hover .arrow {
  transform: translate(3px, -3px);
}

    /* Hero Content Area */
    .hero-content {
      margin-top: 15vh;
      max-width: 1200px;
        text-align: center;
    }

    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: 4.8rem;
      line-height: 1.05;
      font-weight: 500;
      margin-bottom: 1.5rem;
        color: #f8f8e7;
    }

    .hero-subtitle {
        text-align: center;
      font-size: 1.08rem;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 2.5rem;
      width: 100%;
        padding: 0 340px;
        font-family: 'League Spartan', sans-serif;
        color: #f8f8e7;
    }

    /* Input Group */
    .input-group {
      display: inline-flex;
      align-items: center;
      background: rgba(0, 0, 0, 0.25);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 50px;
      padding: 0.35rem 0.35rem 0.35rem 1.5rem;
      margin-bottom: 1rem;
      transition: border-color 0.3s ease;
        z-index: 10;
    }

    .input-group:focus-within {
      border-color: rgba(255, 255, 255, 0.7);
    }

    .input-group input {
      background: transparent;
      border: none;
      color: #ffffff;
      font-family: inherit;
      font-size: 0.95rem;
      outline: none;
      width: 272px;
      margin-right: 1rem;
    }

    .input-group input::placeholder {
      color: rgba(255, 255, 255, 0.8);
        font-size: 13px;
    }

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.8s cubic-bezier(0.215, 0.61, 0.355, 1);
    /* Smoother premium easing */
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

    .btn-dark {
      font-family: 'Inter', sans-serif;
      background: #151515;
      color: #ffffff;
      border: none;
      padding: 0.8rem 1.8rem;
      border-radius: 50px;
      font-size: 0.95rem;
      font-weight: 500;
      cursor: pointer;
      transition: background 0.3s ease, transform 0.2s ease;
    }

    .btn-dark:hover {
      background: #2a2a2a;
    }

    .btn-dark:active {
      transform: scale(0.98);
    }

.bottom-img {
    width: 100%;
    position: relative;
    margin-top: auto; 
}

    .disclaimer {
        font-size: 13px;
      color: rgba(255, 255, 255, 0.7);
      margin-left: 0.5rem;
    }


    .post-hero {
      background-size: cover;
      background-position: center;
    background: linear-gradient(180deg, #fff 0%, #e4d8e4 40%, #e4d8e4 100%);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      padding: 1.5rem 4%;
      align-items: center;
    }

    .post-hero h1 {
        color: #121212;
        margin-top: 20px;
        padding: 10px 0;
  font-family: 'Geist', sans-serif;
        font-size: 40px;
        font-weight: 600;
    }

    .post-hero-img {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.75rem 1.25rem 0.75rem 2rem;
    }

    .post-hero-img img {
        width: 550px;
        padding: 30px;
        border-radius: 70px;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .hero-title {
        font-size: 3.5rem;
      }

    .hero-subtitle {
        text-align: center;
      line-height: 1.3;
        padding: 0 20px;
    }
        
    .bottom-img {
        visibility: hidden;
        width: 0%;
        margin-bottom: 0px;
    }
    .post-hero h1 {
      text-align: center;
    }
    .post-hero-img {
      display: flex;
        flex-direction: column;
      padding: 0.75rem 1.25rem 0.75rem 0rem;
    }

    .post-hero-img img {
        width: 410px;
        padding: 14px;
        border-radius: 70px;
    }
      .navbar {
    border-radius: 20px;
    padding: 1rem 1.5rem;
  }

  /* Show Hamburger Icon */
  .menu-btn {
    display: block;
  }

  /* Transform nav-menu into a Sidebar */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px; 
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 5rem 2rem 2rem 2rem;
    margin-left: 0;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1000;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }


  .nav-menu.active {
    right: 0; 
  }

  /* Show Close Icon inside Sidebar */
  .close-btn {
    display: block;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
  }

  .nav-left {
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 2rem;
  }

  .nav-link {
    font-size: 1.2rem; 
  }

  .nav-right {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  .btn {
    width: 100%;
  }
      .input-group {
          z-index: 1;
        width: 100%;
        display: flex;
          flex-direction: column;
      }
      .input-group input {
        width: 100%;
          padding-top: 14px;
      }
    .btn-dark {
        width: 242px;
      font-size: 0.75rem;
        margin-top: 8px;
      padding: 0.7rem 0.8rem;
      margin-right: 1rem;
    }
    .disclaimer {
      color: rgba(255, 255, 255, 0.9);
    }

    .input-group input::placeholder {
        font-size: 0.9rem;
        text-align: center;
    }
    }

/* =========================================
   Why FullyKnow Section
   ========================================= */

.why-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4rem 6%;
    background: linear-gradient(180deg, #e4d8e4 0%, #e4d8e4 10%, #FDF0C4 100%);
  color: #ffffff;
}

.why-wrapper {
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

/* Left Column Styling */
.why-content-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  width: max-content;
  margin-bottom: 0.5rem;
  color: rgba(25, 25, 25, 0.9);
}

.why-badge i {
  color: rgba(25, 25, 25, 0.9);
}

.star-icon {
  font-size: 1rem;
}

.star-icon i {
  color: rgba(25, 25, 25, 1);
}

.star-icon2 {
  font-size: 1rem;
    width: 34px;
    height: 34px;
    border: 0px solid transparent;
    background-color: #EAF4F4;;
    border-radius: 50%;
    align-items: center;
    text-align: center;
    align-content: center;
    justify-content: center;
}

.why-text {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.3rem;
  line-height: 1.7;
  color: rgba(25, 25, 25, 0.9);
}

/* Right Column Styling */
.why-content-right {
   padding-top: 47px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.why-heading {
  font-family: 'Outfit', sans-serif; 
  font-size: 3.5rem;
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -1px;
  color: rgba(25, 25, 25, 0.9);
}

.btn-container {
  display: flex;
  justify-content: flex-end; 
    cursor: pointer;
}

.btn-container2 {
    margin-top: 1rem;
  display: flex;
  justify-content: flex-start; 
    cursor: pointer;
}

.btn-know-more {
  background: #ffffff;
  color: #000000;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'League Spartan', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

/* Hover Animations */
.btn-know-more:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
  background: #f0f0f0;
}

.btn-know-more .arrow {
  font-size: 1.2rem;
    cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-know-more:hover .arrow {
  transform: translate(3px, -3px) scale(1.1); 
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .why-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .why-heading {
    font-size: 2.8rem;
  }

  .btn-container {
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  .why-heading {
    font-size: 3.2rem;
  }
  .why-section {
    padding: 3rem 5%;
  }
}

/* =========================================
   How It Works Section
   ========================================= */

.how-it-works-section {
    background: linear-gradient(180deg, #FDF0C4 0%, #FDF0C4 20%, #f8f8e7 77%, #fff 100%);
  color: #000000;
  padding: 6rem 6%;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hiw-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

/* Header Styling */
.hiw-header {
  max-width: 750px;
  margin-bottom: 3.5rem;
}

.hiw-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: #000000;
}

.hiw-badge i {
  font-size: 1.1rem;
}

.hiw-title {
  font-family: 'Outfit', sans-serif;
  font-size: 3.2rem;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -1.5px;
  margin-bottom: 1.2rem;
}

.hiw-subtitle {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.3rem;
  line-height: 1.2;
    max-width: 700px;
  color: #4a4a4a;
}

/* Cards Wrapper & Layout */
.hiw-cards-wrapper {
  display: flex;
  gap: 1.5rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 1rem;
}

/* Individual Card Styling */
.hiw-card {
  flex: 1;
  min-width: 320px;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
    margin: 3px 0 30px 0;
}

.hiw-card:hover {
  transform: translateY(-3px);
}

/* Specific Card Colors */
.hiw-card.step-1 {
  background-color: rgba(25, 72, 65, 0.51);
  background-image: url(images/Circular%20pattern%20on%20card.png);
  color: #ffffff;
}

.hiw-card.step-2 {
  background-color: rgba(25, 72, 65, 0.51);
  background-image: url(images/Circular%20pattern%20on%20card.png);
  color: #ffffff;
}

.hiw-card.step-3 {
  background-color: rgba(25, 72, 65, 0.51);
  background-image: url(images/Circular%20pattern%20on%20card.png);
  color: #ffffff;
}

/* Step Indicators */
.card-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.step-circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.step-line {
  width: 1px;
  height: 50px;
  margin-left: 22px; 
  position: relative;
  z-index: 1;
}

/* Contextual Colors for Lines and Circles */
.hiw-card.step-1 .step-circle {
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.hiw-card.step-1 .step-line {
  background-color: rgba(255, 255, 255, 0.5);
}

.hiw-card.step-2 .step-circle,
.hiw-card.step-3 .step-circle {
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.hiw-card.step-2 .step-line,
.hiw-card.step-3 .step-line {
  background-color: rgba(255, 255, 255, 0.5);
}

/* Card Typography */
.card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: -0.8px;
  margin-bottom: 0.8rem;
}

.card-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  opacity: 0.85;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .how-it-works-section {
    padding: 4rem 5%;
  }
  .hiw-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .hiw-cards-wrapper {
    flex-direction: column;
    overflow-x: visible;
  }
  .hiw-card {
    min-width: 100%;
  }
  .hiw-title {
    font-size: 2.2rem;
  }
}

/* =========================================
   What Can You Store Section
   ========================================= */

.storage-section {
  padding: 4rem 6%;
  background-color: #ffffff;
}

.storage-container {
  max-width: 1300px;
  margin: 0 auto;
  background-color: #FDF0C4;
  border-radius: 40px;
  padding: 4rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
  color: rgba(25, 25, 25, 0.9);
}

/* Left Content Typography */
.storage-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  color: #000000;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.storage-title {
  font-family: 'Geist', sans-serif;
  font-size: 2.7rem;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -1.5px;
  margin-bottom: 1rem;
}

.storage-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  line-height: 1.5;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  max-width: 100%;
}

/* Scattered Tags Container */
.tags-wrapper {
  max-width: 90%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

/* Individual Tag Base Style */
.store-tag {
  color: #000000;
  padding: 1rem 1.4rem;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); 
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1;
}

.tag-blue { 
  background-color: #dce1ff; 
}
.tag-purple { 
  background-color: #ebdffc; 
}

/* Scattered Default State */
.tilt-left { transform: rotate(-3deg); }
.tilt-right { transform: rotate(2deg); }
.tilt-left-more { transform: rotate(-5deg) translateY(5px); }
.tilt-right-more { transform: rotate(4deg) translateY(4px); }

.store-tag:hover {
  transform: rotate(0deg) scale(1.08) translateY(0);
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  z-index: 10;
}

.storage-footer {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.5px;
    justify-self: end;
}

/* Right Side Image */
.storage-right {
  display: flex;
  justify-content: flex-end;
}

.storage-img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 40px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .storage-container {
    grid-template-columns: 1fr;
    padding: 3rem 2rem;
    text-align: center;
  }
  .storage-desc {
    margin: 0 auto 2.5rem auto;
  }
  .tags-wrapper {
    justify-content: center;
  }
  .storage-right {
    justify-content: center;
    margin-top: 1rem;
  }
}

@media (max-width: 576px) {
  .storage-title {
    font-size: 2.5rem;
  }
  .storage-container {
    padding: 2.5rem 1.5rem;
    border-radius: 30px;
  }
}

.control-data-section {
    background: linear-gradient(180deg, #fff 0%, #e4d8e4 53%, #e4d8e4 100%);
  color: #ffffff;
  padding: 7rem 4% 13rem 4%;
  display: flex;
  align-items: center;
}

.control-data-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

/* Header Styling */
.control-data-header {
  max-width: 1000px;
  margin-bottom: 3.5rem;
}

.control-data-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 0rem;
  border-radius: 50px;
  font-family: 'Geist', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: rgba(25, 25, 25, 0.9);
}

.control-data i {
  font-size: 1.3rem;
  color: rgba(25, 25, 25, 0.9);
}

.control-data-title {
  font-family: 'Geist', sans-serif;
  font-size: 2.9rem;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.5px;
  margin-bottom: 1.2rem;
  color: rgba(25, 25, 25, 0.9);
}

/* --- Control Data Content Columns --- */
.control-data-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-top: 1.5rem;
}

.control-data-column h3 {
  font-family: 'Geist', sans-serif;
  font-size: 2rem;
  line-height: 1.65;
  color: rgba(25, 25, 25, 0.9);
  font-weight: 500;
}

.control-data-column p {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.3rem;
  line-height: 1.65;
  margin-bottom: 0.8rem;
  color: rgba(25, 25, 25, 0.9);
  font-weight: 300;
}

/* --- Responsive Layout Rules --- */
@media (max-width: 1024px) {
  .control-data-body {
    gap: 2.5rem;
  }
  .control-data-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .control-data-section {
    padding: 5rem 4%;
  }
  .control-data-body {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .control-data-title {
    font-size: 2rem;
  }
}

/* =========================================
   Use Cases Section
   ========================================= */

.use-cases-section {
    background: linear-gradient(180deg, #e4d8e4 0%, #e4d8e4 10%, #FDF0C4 90%, #fff 100%);
  color: #ffffff;
  padding: 4rem 6%;
  display: flex;
  justify-content: center;
}

.use-cases-container {
  width: 100%;
  max-width: 1300px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

/* Left Side Typography */
.use-cases-left {
  padding-right: 2rem;
}

.use-cases-title {
  font-family: 'Geist', sans-serif;
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 400;
  color: rgba(25, 25, 25, 0.9);
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}

#faqspan {
    color: #c84310;
}

.use-cases-desc {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(100, 100, 100, 0.9);
  max-width: 90%;
}

/* Right Side Accordion Grid */
.use-cases-right {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.use-case-item {
  background-color: transparent;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 0 1.8rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.use-case-item:hover {
  outline: 2px solid #C2410C;
  outline-offset: 4px;
}

/* Active State Styling */
.use-case-item.active {
  background-color: #FDF0C4;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.use-case-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  color: rgba(25, 25, 25, 0.9);
  cursor: pointer;
}

.use-case-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: rgba(25, 25, 25, 0.9);
    cursor: pointer;
}

/* The Plus/Minus Icon */
.use-case-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: all 0.3s ease;
    cursor: pointer;
}
.use-case-icon i {
    cursor: pointer;
  color: rgba(25, 25, 25, 0.9);
}

.use-case-item.active .use-case-icon {
  color: #ffffff;
    cursor: pointer;
}

/* Expandable Body */
.use-case-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.use-case-body p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(5, 5, 5, 1);
  padding-bottom: 1.5rem;
  padding-right: 10%;
    cursor: pointer;
}

.use-case-item.active .use-case-body {
  max-height: 200px;
  opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .use-cases-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .use-cases-left {
    padding-right: 0;
  }
  .use-cases-title {
    font-size: 2.8rem;
  }
}

.reviews-section {
    padding: 3rem 0 ;
    max-width: 1320px;
    margin: 0 auto;
}

/* --- Header --- */
.reviews-header {
    padding: 5rem 4% 1rem 4%;
    margin-bottom: 48px;
    position: relative;
}

.reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border: 1px solid #d1d5db;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    background-color: #fff;
    margin-bottom: 20px;
}

.reviews-title {
  font-family: 'Geist', sans-serif;
  font-size: 3.2rem;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -1.5px;
  margin-bottom: 1.2rem;
    color: #1C2024;
}

.reviews-subtitle {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.3rem;
  line-height: 1.2;
    max-width: 700px;
  color: #4a4a4a;
}

/* --- Navigation Arrows --- */
.reviews-nav {
    position: absolute;
    align-items: center;
    top: 105%;
    right: 40%;
    transform: translateY(-50%);
    display: flex;
    gap: 88px;
}

.nav-arrow {
    width: 44px;
    height: 44px;
    border: 0px solid transparent;
    border-radius: 50%;
    background-color: #fff;
    color: #6b7280;
    font-size: 38px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.nav-arrow i {
    cursor: pointer;
}

.nav-arrow:hover {
    border-color: #9ca3af;
    color: #374151;
    background-color: #f9fafb;
}

/* --- Carousel --- */
.reviews-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 20px;
  scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.reviews-carousel::-webkit-scrollbar {
    visibility: hidden;
    height: 0px;
    width: 0px;
}

.reviews-carousel::-webkit-scrollbar-track {
    background: transparent;
}

.reviews-carousel::-webkit-scrollbar-thumb {
    background-color: #d1d5db;
    border-radius: 3px;
}

/* --- Review Cards --- */
.review-card {
    flex: 0 0 340px;
    background-color: #c5d3cf;
    border-radius: 20px;
    padding: 32px;
    display: flex;
    margin: 1rem 0 7rem 0;
    flex-direction: column;
    scroll-snap-align: start;
    min-height: 300px;
}

.review-card--featured {
    background-color: #1a4d43;
    color: #fff;
}



.review-card:nth-child(2) {
    transform: translateY(35px);
}

.review-card:nth-child(4) {
    transform: translateY(35px);
}

.review-card--featured .review-text {
    color: rgba(255, 255, 255, 0.85);
}

.review-card--featured .author-name {
    color: #fff;
}

.review-card--featured .author-role {
    color: rgba(255, 255, 255, 0.6);
}

.review-quote {
    font-size: 16px;
    font-weight: 600;
    color: inherit;
    margin-bottom: 16px;
    line-height: 1.4;
    color: #000;
  font-family: 'Outfit', sans-serif;
}

#activecard {
    color: #fff;
}

.review-text {
    font-size: 14.5px;
    color: #374151;
    line-height: 1.65;
    margin-bottom: 8px;
    flex-grow: 1;
  font-family: 'Outfit', sans-serif;
}

/* --- Author --- */
.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
  font-family: 'Outfit', sans-serif;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
  font-family: 'Outfit', sans-serif;
}

.author-role {
    font-size: 13px;
    color: #6b7280;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .reviews-title {
        font-size: 28px;
    }

    .reviews-nav {
        position: static;
        transform: none;
        margin-top: 20px;
        justify-content: flex-end;
    }

    .review-card {
        flex: 0 0 300px;
        padding: 24px;
    }
}
.site-footer {
    position: relative;
    background: linear-gradient(rgba(180, 180, 180, 0.85), rgba(180, 180, 180, 0.85)), 
                url('images/Footer%20Pattern.png');
    background-color: #EAF4F4;
      min-height: 100vh;
      align-items: center;
    background-image: url('images/Footer%20Pattern.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 60px 40px;
    overflow: hidden;
    color: #111827;
}

.site-footer > * {
    position: relative;
    z-index: 1;
}

/* --- CTA Section --- */
.footer-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.footer-cta-title {
  font-family: 'Geist', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #111827;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.footer-cta-text {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.3rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 28px;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    align-items: center;
  justify-content: flex-end; 
    cursor: pointer;
}

.btn-know-more2 {
  background: rgba(25, 72, 65, 0.59);
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'League Spartan', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

/* Hover Animations */
.btn-know-more2:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  background: rgba(25, 72, 65, 0.81);
}

.btn-know-more2 .arrow {
  font-size: 1.2rem;
    cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-know-more2:hover .arrow {
  transform: translate(3px, -3px) scale(1.1); 
}

.footer-cta-btn svg {
    flex-shrink: 0;
}

/* --- Main Footer Content --- */
.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Brand */
.footer-brand {
    max-width: 280px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    display: block;
    margin-bottom: 12px;
  font-family: 'League Spartan', sans-serif;
}

.footer-tagline {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
  font-family: 'League Spartan', sans-serif;
}

/* Links Group */
.footer-links-group {
    text-align: left;
}

.footer-links-heading {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    display: block;
    margin-bottom: 12px;
}

.footer-legal-links {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
  font-family: 'League Spartan', sans-serif;
}

.footer-legal-links a {
    font-size: 13px;
    color: #374151;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
    cursor: pointer;
}

.footer-legal-links a:hover {
    color: #1a4d43;
}

/* Social Icons */
.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1.5px solid #1a4d43;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a4d43;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.social-icon i {
    font-size: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

.social-icon:hover {
    background-color: #1a4d43;
    color: #fff;
}

/* --- Footer Bottom --- */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto -70px auto;
    padding-top: 8px;
}

.footer-copyright {
    font-size: 13px;
    color: #4b5563;
  font-family: 'League Spartan', sans-serif;
}

.footer-back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #374151; /* */
    text-decoration: none; /* */
    font-weight: 500;
    font-family: 'League Spartan', sans-serif; /* */
    cursor: pointer;
    transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.footer-back-to-top:hover {
    color: #1a4d43; /* */
}

.footer-back-to-top svg {
    border: 1px solid #d1d5db; /* */
    border-radius: 50%; /* */
    padding: 3px; /* */
    width: 22px; /* */
    height: 22px; /* */
    background-color: transparent;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                background-color 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                border-color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.footer-back-to-top svg path {
    transition: stroke 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: center;
}

/* Micro-interactions: Ring fills up and shifts upwards on hover */
.footer-back-to-top:hover svg {
    background-color: #1a4d43;
    border-color: #1a4d43;
    transform: translateY(-4px);
}

/* The arrow inside slides up a tiny fraction independently */
.footer-back-to-top:hover svg path {
    stroke: #ffffff;
    transform: translateY(-1px);
}

/* Compression feedback when physically pressed */
.footer-back-to-top:active {
    transform: scale(0.96);
}

/* --- Large Background Text --- */
.footer-bg-text {
    bottom: -133px;
    left: 59%;
    transform: translateX(-50%);
    font-size: clamp(100px, 18vw, 280px);
    font-weight: 700;
    color: rgba(0, 0, 0, 0.04);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    line-height: 1;
    z-index: 0;
  font-family: 'League Spartan', sans-serif;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .site-footer {
        padding: 60px 24px 30px;
    }

    .footer-cta-title {
        font-size: 26px;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links-group {
        width: 100%;
    }

    .footer-legal-links {
        flex-wrap: wrap;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-bg-text {
    bottom: -200px;
    left: 48%;
        font-size: clamp(90px, 18vw, 280px);
}
}

/* =========================================
   Ask A Question Modal
   ========================================= */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 7, 3, 0.87);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
  padding: 1rem 2rem;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  width: 100%;
  max-width: 850px;
  position: relative;
  background: transparent;
  color: #121212;
  margin: auto;
    margin-bottom: 3rem;
    margin-top: 7rem;
}

/* Close Button styling from the image */
.modal-close {
  position: absolute;
  top: -10px;
  right: 0;
  background: #ffffff;
  color: #000000;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 8px;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.modal-close i {
  cursor: pointer;
}

.modal-close:hover {
  transform: scale(1.05);
}

#closeCookiePrefBtn {
  top: 30px;
  right: 15px;
}

/* Typography & Header */
.modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.modal-header h2 {
  font-family: 'Geist', sans-serif;
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

/* Recreating the orange brush stroke from the image */
.highlight-text {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.highlight-text::before {
  content: '';
  position: absolute;
  background-color: #c84310;
  width: 110%;
  height: 65%;
  bottom: 8%;
  left: -5%;
  z-index: -1;
  transform: rotate(-2deg);
}

.modal-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  color: rgba(15, 15, 15, 0.9);
}

/* Grid & Inputs */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.form-group label {
  font-family: 'League Spartan', sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border-radius: 16px;
  border: none;
  background: #ffffff;
  color: #000000;
  font-family: 'League Spartan', sans-serif;
  font-size: 1rem;
  outline: none;
    cursor: text;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: 2px solid #C2410C;
  outline-offset: 4px
}

.form-group input:hover,
.form-group textarea:hover {
  outline: 2px solid #C2410C;
  outline-offset: 4px
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #6b7280;
}

.form-group textarea {
  resize: vertical;
}

/* Submit Button */
.modal-submit-wrapper {
  text-align: center;
  margin-top: 1rem;
}

.btn-modal-submit {
  background: #ffffff;
  color: #000000;
  border: none;
  padding: 1rem 1.2rem;
  border-radius: 50px;
  font-family: 'League Spartan', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-modal-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Mobile Responsiveness for Modal */
@media (max-width: 768px) {
    
  .form-grid {
    grid-template-columns: 1fr;
  }
  .modal-header h2 {
    font-size: 2.8rem;
  }
  .modal-intro {
    flex-direction: column;
    text-align: center;
  }
  .modal-close {
    top: -30px;
  }
  .modal-content {
      align-self: center;
    }
}

/* =========================================
   Success Confirmation Modal
   ========================================= */
.confirmation-modal-content {
  max-width: 580px;
  background-color: #ffffff;
  border-radius: 24px;
  padding: 2.5rem 2.5rem 2rem 2.5rem;
  color: #111827;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  text-align: left;
}

.success-icon-container {
  margin-bottom: 1.75rem;
}

.confirmation-title {
  font-family: 'Outfit', 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #113E38; /* Matches the dark green branding tint in the image */
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.confirmation-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  line-height: 1.5;
  color: #374151;
  margin-bottom: 2rem;
}

.confirmation-divider {
  border-top: 1px solid #F3F4F6;
  margin: 0 -2.5rem 1.75rem -2.5rem;
}

.btn-confirmation-done {
  width: 100%;
  background-color: #134E4A;
  color: #ffffff;
  border: none;
  padding: 1.1rem;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-confirmation-done:hover {
  background-color: #0F3F3C;
}

.btn-confirmation-done:active {
  transform: scale(0.99);
}

/* Modal Responsiveness Override */
@media (max-width: 768px) {
  .confirmation-modal-content {
    margin: 0 1rem;
    padding: 2rem 1.25rem 1.5rem 1.25rem;
  }
.confirmation-divider {
  margin: 0 -1.2rem 1.75rem -1.2rem;
}
  .confirmation-title {
    font-size: 1.35rem;
  }
}
/* =========================================
   Cookie Policy Modal
   ========================================= */

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);

  display: flex;
  justify-content: center;
  align-items: flex-end;

  padding-bottom: 17px;

  opacity: 0;
  visibility: hidden;
  transition: .3s ease;

  z-index: 99999;
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  width: min(1320px, 95%);
  background: #f4f4f4;
  border-radius: 40px;

  padding: 2rem 2rem;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 2rem;

  transform: translateY(-20px);
  transition: .3s ease;
}

.cookie-modal-content i {
  font-size: 2.4rem;
  color: rgba(25, 72, 65, 0.51) ;
}

.cookie-modal.active .cookie-modal-content {
  transform: translateY(0);
}

.cookie-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1;
}

.cookie-left i {
  font-size: 2rem;
  color: #11b0a1;
}

.cookie-left p {
  color: #333;
  font-family: 'League Spartan', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
}

.cookie-btn-outline,
.cookie-btn-solid {
  border-radius: 50px;
  padding: 1rem 2rem;
  font-family: 'League Spartan', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: .25s ease;
}

.cookie-btn-outline {
  background: transparent;
  border: 2px solid rgba(25, 72, 65, 0.51) ;
  color: rgba(25, 72, 65, 0.51) ;
}

.cookie-btn-outline:hover {
  background: rgba(25, 72, 65, 0.51) ;
  color: #fff;
}

.cookie-btn-solid {
  border: none;
  background: rgba(25, 72, 65, 0.51) ;
  color: #fff;
}

.cookie-btn-solid:hover {
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 900px) {

  .cookie-modal-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    border-radius: 25px;
  }

  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn-outline,
  .cookie-btn-solid {
    width: 100%;
  }
}

/* =========================================
   Cookie Preferences Modal
   ========================================= */

.cookie-pref-content {
    top: 9%;
  max-width: 550px;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 1.8rem 2.5rem 0.7rem 2.5rem;
  color: #111827;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  text-align: left;
}

.cookie-pref-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #113E38;
  margin-bottom: 0.2rem;
}

.cookie-pref-subtitle {
  font-family: 'League Spartan', sans-serif;
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.cookie-list {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.cookie-item {
  background-color: #F4F9F9;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.cookie-item:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.cookie-item:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.cookie-info h3 {
  font-family: 'Geist', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.3rem;
}

.cookie-info p {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.4;
}

.always-active-badge {
  background-color: #EBEBEB;
  color: #374151;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  white-space: nowrap;
}

/* Custom Checkbox */
.cookie-checkbox {
  appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid #113E38;
  border-radius: 4px;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.cookie-checkbox:checked {
  background-color: #113E38;
}

.cookie-checkbox:checked::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 0px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.cookie-pref-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

/* Modal Responsiveness */
@media (max-width: 768px) {
  .cookie-pref-content {
    top: 1%;
    margin: 0 1rem;
    padding: 0.8rem 1.5rem 1rem 1.5rem;
  }
.cookie-pref-title {
  font-size: 1.4rem;
  margin-bottom: 0.1rem;
}
.cookie-pref-subtitle {
  font-size: 0.8rem;
  color: #4b5563;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}
.cookie-item {
  padding: 1rem 1rem;
  gap: 1.5rem;
}
  #activecookie-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }
  .cookie-status {
    align-self: flex-end;
  }
  .cookie-pref-actions {
    flex-direction: column;
  gap: 0.4rem;
  }
  .cookie-pref-actions button {
    width: 100%;
  }
}




/*------------------------------------------------------- ABOUT PAGE ---------------------------------------------------*/





    .about-hero-section {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      padding: 1.5rem 4%;
    background: linear-gradient(180deg, #fff 0%, #e4d8e4 40%, #e4d8e4 100%);
      background-size: cover;
      background-position: center;
    }

    .about-hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    .content-wrapper2 {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
        padding-left: 4rem;
    }

.navbar2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.25rem 0.75rem 2rem;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 9999;
  position: fixed; 
  left: 50%;
  transform: translateX(-50%);  
  width: 92%;
  max-width: 1280px;
}


/* Responsive Adjustments */
    @media (max-width: 768px) {
      .navbar2 {
    width: 93%;
    border-radius: 20px;
    padding: 1rem 1.5rem;
  }

    .pic-flex-img {
        visibility: hidden;
        height: 0px;
    }

    .pic-flex-img img {
        visibility: hidden;
        height: 0px;
    }
    }




.about-hero-content {
      margin-top: 15vh;
    display: flex;
    flex-direction: column;
      max-width: 900px;
    }

    .about-hero-title {
      font-family: 'League Spartan', sans-serif;
      font-size: 3.8rem;
      line-height: 1.05;
      font-weight: 500;
      margin-bottom: 1.5rem;
      color: rgba(5, 5, 5, 0.9);
        width: 90%;
    }

    .about-hero-subtitle-grp {
        align-self: flex-end;
      max-width: 620px;
    }

    .about-hero-subtitle {
      font-size: 1.18rem;
      line-height: 1.2;
      color: rgba(5, 5, 5, 0.9);
      margin-bottom: 1.5rem;
        font-family: 'League Spartan', sans-serif;
    }

    .pic-flex-img {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.75rem 1.25rem 0.75rem 2rem;
    }

    .pic-flex-img img {
        width: 286px;
        height: 361;
        padding: 20px;
        border-radius: 70px;
    }

/* =========================================
   About Page - The Challenge Section
   ========================================= */

.challenge-section {
    background: linear-gradient(180deg, #e4d8e4 0%, #e4d8e4 10%, #FDF0C4 90%, #FDF0C4 100%); 
  color: #121212;
  padding: 6rem 6%;
  display: flex;
  justify-content: center;
}

.challenge-wrapper {
  width: 100%;
  max-width: 1300px;
}

/* --- Top Area Styling --- */
.chal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif; 
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #121212;
}

.chal-badge i {
  font-size: 1.2rem;
}

.chal-title {
  font-family: 'Geist', sans-serif; 
  font-size: 3.5rem;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -1.5px;
  margin-bottom: 4rem;
  max-width: 1100px;
}

/* Orange Brush Stroke Highlight */
.highlight-orange {
  position: relative;
  display: inline-block;
  color: #ffffff; 
  z-index: 1;
  padding: 0 0.2rem;
}

.highlight-orange::before {
  content: '';
  position: absolute;
  background-color: #c84310;
  width: 104%;
  height: 85%;
  bottom: 8%;
  left: -2%;
  z-index: -1;
  transform: skewX(-10deg) rotate(-1deg); 
  border-radius: 3px;
}

/* --- Bottom Area Styling --- */
.challenge-bottom {
  display: grid;
  grid-template-columns: 1fr 1.2fr; 
  gap: 4rem;
  align-items: center;
}

.chal-desc {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 1.5rem;
}

.chal-list {
  padding-left: 1.2rem;
  margin-bottom: 2rem;
}

.chal-list li {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 1rem;
  padding-left: 0.5rem;
}

.chal-list li strong {
  color: #121212;
  font-weight: 600;
}

/* Image Styling */
.chal-image {
  width: 100%;
  border-radius: 40px; 
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {

    .about-hero-title {
      font-size: 56px;
      line-height: 1.03;
      margin-top: 1rem;
        width: 100%;
    }
    
  .challenge-bottom {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .chal-title {
    font-size: 2.8rem;
    br { display: none; }
  }
}

@media (max-width: 576px) {
  .chal-title {
    font-size: 2.2rem;
  }
  .chal-image {
    border-radius: 20px;
  }
}

.challenge-summary-footer {
  text-align: center;
  margin-top: 8rem; 
  padding: 0 4%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
}

.summary-footer-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 400;
  color: #121212;
  letter-spacing: -0.5px;
  max-width: 900px;
  margin-bottom: 0.2rem;
}

.summary-footer-paragraph {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.22rem;
  line-height: 1.2;
  color: #374151;
  max-width: 850px;
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .challenge-summary-footer {
    margin-top: 5rem;
    gap: 1.4rem;
  }
  
  .summary-footer-heading {
    font-size: 1.75rem;
  }
  
  .summary-footer-paragraph {
    font-size: 1.1rem;
  }
  
  .challenge-summary-footer br {
    display: none;
  }
}

/* =========================================
   About Page - The Approach Section
   ========================================= */

.approach-section {background: linear-gradient(180deg, #FDF0C4 0%, #FDF0C4 10%, #FFF 40%, #FFF 90%, #fff 100%); 
  padding: 8rem 6%;
  display: flex;
  justify-content: center;
  color: #121212;
}

.approach-wrapper {
  width: 100%;
  max-width: 1300px;
}

.approach-title {
  font-family: 'Geist', sans-serif;
  font-size: 2.4rem;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -1.5px;
  margin-bottom: 2rem;
  color: #363636;
}

/* --- Split Grid Layout --- */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 6rem;
}

/* Left Content */
.approach-text p {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 1.5rem;
}

.approach-text p:last-child {
  margin-bottom: 0;
}

/* Right Content (Dotted List) */
.approach-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.item-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  color: #949494;
}

.item-label i {
  font-size: 1.3rem;
  color: #949494;
}

.item-dots {
  flex-grow: 1;
  border-bottom: 2px dotted #d1d5db;
  margin: 0 1.5rem;
  position: relative;
  top: 5px;
}

.item-value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #374151;
}

/* --- Dark Quote Banner --- */
.approach-banner {
  background-color: #e4d8e4;
      background-image:  url('images/Circular%20pattern%20on%20card.png');
      background-size: cover;
      background-position: center;
  border-radius: 40px;
  padding: 4rem 12rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.banner-content {
  position: relative;
  z-index: 0;
}

.banner-quote {
  font-family: 'Geist', sans-serif;
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 500;
  color: #121212;
  width: 70%;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

/* Typewriter Cursor */
#typing-text::after {
  content: "|";
  display: inline-block;
  margin-left: 4px;
  animation: blinkCursor 0.8s infinite;
  color: #ffffff;
}

/* Hides the blinking cursor element when the JS adds this class */
#typing-text.hide-cursor::after {
  display: none;
}
@keyframes blinkCursor {
  0%, 50% {
    opacity: 1;
  }

  51%, 100% {
    opacity: 0;
  }
}

.banner-author {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  color: rgba(85, 85, 85, 0.7);
}

.banner-icon {
  font-family: 'Geist', sans-serif;
  font-size: 14rem;
  line-height: 0;
  color: rgba(106, 143, 141, 0.3);
  position: absolute;
  right: 4%;
  top: 19%;
  user-select: none;
  z-index: 1;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .approach-banner {
    padding: 4rem 3rem;
  }
  
  .banner-quote {
    font-size: 2.2rem;
  }
  
  .banner-icon {
    font-size: 15rem;
    right: -2%;
  }
}

@media (max-width: 576px) {
  .approach-title {
    font-size: 2.5rem;
  }
  
  .banner-quote {
    font-size: 1.8rem;
  }
  
  .approach-banner {
    padding: 3rem 2rem;
    border-radius: 25px;
  }
}

/* =========================================
   About Page - The Principles Section
   ========================================= */

.principles-section {
  background-color: #ffffff;
  padding: 6rem 6%;
  display: flex;
  justify-content: center;
  color: #121212;
}

.principles-wrapper {
  width: 100%;
  max-width: 1300px;
}

/* Header Area */
.principles-header {
  margin-bottom: 3.5rem;
}

.principles-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background-color: #f3f4f6;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #121212;
  margin-bottom: 1.5rem;
}

.principles-badge i {
  font-size: 1.1rem;
}

.principles-intro {
  font-family: 'Geist', sans-serif;
  font-size: 1.35rem;
  line-height: 1.5;
  color: #374151;
}

/* 4-Column Grid */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Base Card Styling */
.principle-card {
  background-color: #EAEFEF;
  border-radius: 20px;
  padding: 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.principle-card:hover {
  transform: translateY(-4px);
}

.p-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.p-title {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #121212;
  margin-bottom: 0.9rem;
}

.p-text {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #4b5563;
}

/* Active State (Teal Card) */
.principle-card.active {
  background-color: #0ab4a5;
    background-image: url(images/Circular%20pattern%20on%20card.png);
  color: #ffffff;
}

.principle-card.active .p-num,
.principle-card.active .p-title,
.principle-card.active .p-text {
  color: #ffffff;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .principles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .principles-intro {
    font-size: 1.2rem;
  }
  .principles-grid {
    grid-template-columns: 1fr;
  }
  .principles-section {
    padding: 4rem 5%;
  }
}





/*------------------------------------------------------- PRIVACY POLICY PAGE ---------------------------------------------------*/





/* =========================================
   Privacy Policy Page - Hero Section
   ========================================= */

    .privacy-hero-section {
        background-color: transparent;
      position: relative;
      display: flex;
      flex-direction: column;
      padding: 1.5rem 4%;
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
    }

.privacy-hero-section {
  background-color: #EAF4F4;
  min-height: auto;
  padding: 1.5rem 4% 5rem 4%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.privacy-hero-content {
  text-align: center;
  margin-top: 5rem;
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 0.6s ease-out;
}

.privacy-title {
  font-family: 'Geist', sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: -2px;
  margin-bottom: 1.2rem;
  line-height: 1.1;
}

.privacy-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #111827;
  max-width: 800px;
  margin-bottom: 2rem;
  font-weight: 400;
}

.privacy-date-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: #374151;
  font-family: 'League Spartan', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Subtle introductory animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .privacy-title {
    font-size: 3.5rem;
    letter-spacing: -1px;
  }
  
  .privacy-desc {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
  
  .privacy-desc br {
    display: none;
  }
  
  .privacy-hero-content {
    margin-top: 3.5rem;
  }
}

/* =========================================
   Privacy Policy Page - Content Body
   ========================================= */

.privacy-body-section {
  background-color: #EAF4F4;
  padding: 2rem 6% 8rem 6%;
  display: flex;
  justify-content: center;
}

.privacy-body-wrapper {
  width: 100%;
  max-width: 742px;
}

.policy-paragraph {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.15rem;
  line-height: 1.65;
  color: #2D3748;
  margin-bottom: 2rem;
  font-weight: 400;
}

#policylist {
    margin-left: 20px;
}

.policy-heading {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.85rem;
  font-weight: 400;
  color: #111827;
  margin-top: 3.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .privacy-body-section {
    padding: 1rem 5% 5rem 5%;
  }
  
  .policy-paragraph {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .policy-heading {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
  }
}




/*------------------------------------------------------- CONTACT PAGE ---------------------------------------------------*/





    .contact-hero-section {
        align-content: center;
        align-items: center;
        background-color: #e4d8e4;
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      padding: 1.5rem 4%;
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
    }


@media (max-width: 768px) {
    .about-hero-section {
        align-content: center;
        align-items: center;
        align-self: center;
    }

    .content-wrapper2 {
        padding-left: 0rem;
    }
}

    .contact-hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }