
 .content-footer {
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;   /* changed from space-between */
  padding: 40px 50px;
  background: linear-gradient(100deg, #f6d34a 0%, #6fb6e8 55%, #7bc79e 100%);
  flex-wrap: wrap;
  gap: 80px;                     /* controls space between brand and nav */
  overflow: hidden;
}

  /* Left side: logo + contact info */
  .brand {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .brand h1 {
    font-size: 28px;
    font-weight: 800;
    color: #111;
    letter-spacing: -0.5px;
  }

  .contact-line {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #222;
  }

  .contact-line svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
  }

  .contact-line .phone-lines {
    display: flex;
    flex-direction: column;
    line-height: 1.5;
  }

  /* Right side: nav menu, two columns */
  .nav {
    display: flex;
    gap: 10px;
  }

  .nav-column {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .nav-column a {
    text-decoration: none;
    color: #111;
    font-weight: 700;
    font-size: 15px;
  }

  .nav-column a:hover {
    text-decoration: underline;
  }

  .slogan {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;  /* takes up remaining space */
  }
  .slogan h2 {
    font-size: 70px;
    color: transparent;
    -webkit-text-stroke: 1px #000; /* outline thickness and color */
  }


  /* Responsive */
  @media (max-width: 700px) {
    .content-footer {
      flex-direction: column;
      align-items: flex-start;
      height: auto;
      min-height: 50vh;
    }
    .nav {
      gap: 40px;
    }
  }