* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    height: 100%;
  }
  
  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
  }
  
  footer {
    margin-top: auto;
    /* Rest of your footer styles */
    background: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
  }
  
  header {
    display: flex;
    
    justify-content: flex-end;
    align-items: center;
    padding: 1% 10%;
    padding-bottom: 0px;
    background-color: #8C9579;
  }
  ul li a {
    display: block;
    padding:  25px;
  }

  ul li ul.dropdown li {
    display: block;
  }

  ul li ul.dropdown {
    width: auto;
    background: #24252a;
    position: absolute;
    z-index: 999;
    display: none;
  }

  .navbar_list:hover {
    background: #121315;
    height: 50%;
  }

  ul li:hover ul.dropdown {
    display: block;
  }


  .lang {
    padding-left: 20px;
  }

  .logo {
    margin-right: auto;
    border-radius: 50%;
    width: 30%;
  }
  .logo-checkout {
    margin-left: 20px;
    background-color: #edf0f1;
    border-radius: 50%;
  }

  .language-selector {
    margin-left: 20px;
    border-radius: 50%;
  }

  .language-selector img{
    width: 30px;
    height: auto;
  }

  .logo-checkout img{
    width: 50px;
    height: auto;
  }

  .logo img{
    margin-right: auto;
    width: 30%;
    border-radius: 50%;
    height: auto;
    padding: 0%;
  }
  
  .nav__links {
    list-style: none;
    display: flex;
  }
  
  .nav__links a,
  .cta,
  .overlay__content a {
    font-family: "Allura", cursive;
    font-weight: 500;
    font-style: normal;
    color: #edf0f1;
    text-decoration: none;
    font-size: 30px;
  }
  
  .nav__links li {
    padding: 0px;
  }
  
  .nav__links li a {
    transition: all 0.3s ease 0s;
  }
  
  .nav__links li a:hover {
    color: #DCBCAA;
  }
  
  .cta {
    margin-left: 20px;
    padding: 9px 25px;
    background-color: #8C9579;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
  }
  
  .cta:hover {
    background-color: #8C9c79;
  }
  
  /* Mobile Nav */
  
  .menu {
    display: none;
  }
  
  .overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    background-color: #24252a;
    overflow-x: hidden;
    transition: all 0.5s ease 0s;
  }
  
  .overlay--active {
    width: 100%;
  }
  
  .overlay__content {
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .overlay a {
    padding: 15px;
    font-size: 36px;
    display: block;
    transition: all 0.3s ease 0s;
  }
  
  .overlay a:hover,
  .overlay a:focus {
    color: #DCBCAA;
  }
  .overlay .close {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
    color: #edf0f1;
    cursor: pointer;
  }
  .footer-info {
    display: flex;
    justify-content: space-evenly;
    align-items: stretch; /* This will stretch the children to fill the container */
    padding: 20px;
    background-color: #8C9579;
    color: white;
    border-top: 1px solid lightgray;
}

.footer-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1; /* This will allow the section to expand */
    padding: 20px;
    border-left: 1px solid lightgray;
    /* No need for border-top here, as it's already been set in .footer-info for the first child */
}

.footer-section:first-child {
    border-left: none;
}

.footer-section .footer-head {
    margin-bottom: 10px;
    margin-top: 20px;
    color: #eee;
    font-size: larger;
}

.footer-section a,
.footer-section p {
    color: white;
    text-decoration: none;
    margin-bottom: 5px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    margin-bottom: 5px;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.footer-logo {
   border-radius: 50%;
    max-width: 400px;  
    margin-top: 10px;
    margin-bottom: 10px; /* Add this if you want to ensure some space below the image as well */
    align-self: center; /* This will also help ensure the logo is centered horizontally in its container */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  html, body {
    width: 100%;
    overflow-x: hidden;
  }
  .nav__links,
  .cta {
    display: none;
  }
  .menu {
    display: initial;
  }
  .logo img {
    width: 80px;
  }
  .language-selector img {
    width: 25px;
  }
  .logo-checkout img {
    width: 40px;
  }
  .overlay a {
    font-size: 24px;
  }
  .overlay .close {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
  .footer-info {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-section {
    border-left: none;
    border-top: 1px solid lightgray;
    padding: 10px 0;
  }
  .footer-section:first-child {
    border-top: none;
  }
  .footer-logo {
    margin: 10px auto;
  }
}

@media screen and (max-height: 450px) {
  .overlay a {
    font-size: 20px;
  }
  .overlay .close {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }

  .logo img {
    margin-right: auto;
    width: 50px;
    border-radius: 50%;
    height: 50px;
    padding: 0%;
  }

  .logo {
    width: 50px;
  }
}

@media only screen and (max-width: 800px) {
  .nav__links,
  .cta {
    display: none;
  }
  .menu {
    display: initial;
  }
}