/*-- -------------------------- -->
<---           Footer           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #cs-footer-1292 {
	flex-shrink: 0;
    padding: var(--sectionPadding);
    /* Removed padding-bottom to let the new bottom section handle it */
	padding-top: 3rem !important; 
    padding-bottom: 1rem !important;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    z-index: 10;
	font-family: 'Montserrat', sans-serif; 
  }

  #cs-footer-1292 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    column-gap: 1.5rem;
    row-gap: 2.25rem;
  }

  #cs-footer-1292 .cs-logo-group {
    width: 100%;
    position: relative;
  }

  #cs-footer-1292 .cs-logo {
    width: 12.3125rem;
    height: auto;
    display: block;
    margin: -55px 0 -35px 0 !important;
  }

  #cs-footer-1292 .cs-logo-img {
    width: 100%;
    height: auto;
  }

  #cs-footer-1292 .cs-nav {
    width: 45%;
    max-width: 11.25rem;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }

  #cs-footer-1292 .cs-nav-li {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }

  #cs-footer-1292 .cs-header {
    /* Increased font size and weight to match image */
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.2em;
    margin: 0 0 1rem 0;
	padding: 0;
    color: var(--headerColor);
    display: block;
	
  }

  #cs-footer-1292 .cs-nav-link {
    font-size: 0.875rem;
    text-decoration: none;
    line-height: 1.5em;
    color: var(--bodyTextColor);
    position: relative;
    display: inline-block;
    transition: color 0.3s;
  }

  #cs-footer-1292 .cs-nav-link:before {
    content: "";
    width: 0%;
    height: 0.125rem;
    background: currentColor;
    position: absolute;
    bottom: -0.125rem;
    left: 0;
    transition: width 0.3s;
  }

  #cs-footer-1292 .cs-nav-link:hover {
    color: var(--primary);
  }

  #cs-footer-1292 .cs-nav-link:hover:before {
    width: 100%;
  }

  /* NEW: Bottom Section Styles */
  #cs-footer-1292 .cs-footer-bottom-section {
    width: 100%;
    max-width: 80rem;
    margin: 0;
    /* Adds the horizontal line */
    border-top: 1px solid var(--bodyTextColor); 
    padding-top: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  #cs-footer-1292 .cs-text {
    /* Removed negative margin */
    margin: 0;
    max-width: 50rem;
    font-size: 0.875rem;
    line-height: 1.5em;
    color: var(--bodyTextColor);
  }

  #cs-footer-1292 .cs-text a {
      color: var(--primary);
      text-decoration: underline;
  }

  #cs-footer-1292 .cs-bottom {
    margin: 0;
    padding: 0;
  }

  #cs-footer-1292 .cs-copyright {
    font-size: 0.875rem;
    line-height: 1.5em;
    color: var(--bodyTextColor);
  }
#cs-footer-1292 .cs-floater {
    width: 31.625rem;
    height: 31.625rem;
    margin-left: 34.375rem;
    border-radius: 50%;
    border: 2px solid var(--primary);
    opacity: 0.2;
    display: none; /* Hidden on mobile */
    position: absolute;
    left: 50%;
    top: 0;
    z-index: -1;
}

#cs-footer-1292 .cs-floater:before {
    content: "";
    width: 44.6875rem;
    height: 44.6875rem;
    border: 2px solid var(--primary);
    border-radius: 50%;
    opacity: 0.8;
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#cs-footer-1292 .cs-floater:after {
    content: "";
    width: 60.1875rem;
    height: 60.1875rem;
    border: 2px solid var(--primary);
    border-radius: 50%;
    opacity: 0.5;
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #cs-footer-1292 .cs-container {
    flex-wrap: nowrap;
    column-gap: clamp(2rem, 5vw, 4rem);
    row-gap: 0;
  }

  #cs-footer-1292 .cs-logo-group {
    width: auto;
    margin-right: auto;
  }
  
  #cs-footer-1292 .cs-logo {
      margin-bottom: 0;
  }

  #cs-footer-1292 .cs-nav {
    width: auto;
  }
  #cs-footer-1292 .cs-floater {
        display: block; /* Shows the circles on tablet and desktop */
    }
}

/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #cs-footer-1292 .cs-container {
    justify-content: flex-start;
  }
  #cs-footer-1292 .cs-text {
    width: auto;          /* Allows the block to grow with the text */
    max-width: none;      /* Removes any width restrictions */
    white-space: nowrap;  /* FIX: Forces the text onto a single line */
    margin: 0;            /* Keeps it centered or aligned as per your bottom section */
  }
}