.footer-container {
  width: 100%;
  /* max-width: 1400px; */
  margin: 0 auto;
  padding: 0 80px;
}

@media screen and (max-width: 1024px) {
  .footer-container {
    padding: 0 24px;
  }
}

.footer-background {
  width: 100%;
  border-top: 1px solid rgb(80, 80, 80);
  background-color: rgb(10, 0, 0);
  color: white;
  padding: 40px 0;

  margin-top: 65px;
}

.footer-columns-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-divider {
  display: none;
}

.footer-logo-wrapper {
  margin-bottom: 20px;

  width: 25%;
  padding: 5px 10px;
}

.footer-app-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 5px 10px;
}

.footer-flex-container {
  display: flex;
}

.footer-flex-row {
  flex-direction: row;
}

.footer-flex-stretch {
  align-items: stretch;
}

.footer-flex-start {
  justify-content: flex-start;
}

.footer-flex-nowrap {
  flex-wrap: nowrap;
}

@media (max-width: 768px) {
  .footer-columns-wrapper {
    flex-direction: column;
  }
  
  .footer-divider {
    display: block;
    height: 1px;
    background-color: #333;
    margin: 20px 0;
  }
}

/* Header logo styles */
.mobile-logo {
    display: none;
}

/* Media queries for responsive design */
@media screen and (max-width: 1023px) {
    .header {
        background-color: #000;
    }
    
    .promo {
        background-color: #18929f;
        color: white;
    }
    
    .header__content {
        padding: 10px 20px;
    }
    
    .desktop-logo {
        display: none;
    }
    
    .mobile-logo {
        display: block;
    }
    
    .header-buttons {
        display: none;
    }
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Hide mobile menu on desktop */
@media screen and (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    z-index: 1000;
    width: 100%;
}

.menu--opened {
    display: block;
    margin-top: 28px;
}

.menu-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.menu-content {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 999;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.menu--opened .menu-content {
    transform: translateX(0);
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    padding: 24px 36px 0 24px;

    margin-bottom: 80px;
}

.menu-logo {
    height: auto;
    width: 269px;
}

.menu-close {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-close img {
    width: 18px;
    height: 18px;
}

.menu-links {
    display: flex;
    flex-direction: column;

    padding: 0px 36px 0 24px;
}

.menu-link {
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
    color: #fff !important;
}

.menu-link:first-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.9);
  padding-bottom: 20px;
}

.menu-link:hover {
    color: #18929f !important;
}

.wrapper--menu-opened {
    overflow: hidden;
}

.certificate {
  display: flex;
  flex-direction: column;
  max-width: 1080px;
  padding: 24px 16px 88px;
  margin: auto;
}

.certificate img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}