.page-container.sticky-footer {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.footer {
  width: 100%;
  height: 309px;
  font-family: 'Noto Sans', sans-serif;
  background: linear-gradient(90deg, #EFF1F5 21.15%, #00338D 87.5%);
  border-bottom-right-radius: 150px;
  padding: 60px 185px;
  color: #ffffff;
  margin-top: 60px;
  flex-shrink: 0;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 36px;
}
.footer-logo {
  width: 60px;
  height: auto;
}
.footer-text-logo {
  height: 160px;
  width: auto;
}
.footer-links {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-column h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}
.footer-column a {
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Noto Sans', sans-serif;
}

/* Tablet View (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .footer {
    height: 280px;
    padding: 72px 55px;
    margin-top: 50px;
    border-bottom-right-radius: 120px;
  }
  
  .footer-content {
    max-width: 100%;
  }
  
  .footer-brand {
    gap: 28px;
  }
  
  .footer-logo {
    width: 48px;
  }
  
  .footer-text-logo {
    height: 120px;
  }
  
  .footer-links {
    gap: 60px;
  }
  
  .footer-column {
    gap: 10px;
  }
  
  .footer-column h3 {
    font-size: 14px;
    margin-bottom: 6px;
    font-weight: 600;
  }
  
  .footer-column a {
    font-size: 14px;
  }
}

/* Mobile View (below 768px) */
@media (min-width: 425px) and (max-width: 767px) {
  .footer {
    height: auto;
    padding: 0;
    margin-top: 40px;
    background: none;
    position: relative;
    overflow: hidden;
    border-bottom-right-radius: 62px;
  }
  
  .footer-content {
    display: flex;
    flex-direction: row;
    gap: 0;
    max-width: none;
    position: relative;
  }
  
  .footer-brand-section {
    background-color: #ffffff;
    padding: 25px 20px;
    width: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 2;
    border-bottom-right-radius: 72px;
  }
  
  .footer-brand {
    flex-direction: row;
    gap: 15px;
    align-items: center;
  }
  
  .footer-logo {
    width: 35px;
    height: auto;
  }
  
  .footer-text {
    display: flex;
    align-items: center;
  }
  
  .footer-text-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
  }
  
  .footer-links-section {
    background-color: #00338d;
    padding: 16px 56px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
  }
  
  .footer-links {
    display: flex;
    gap: 25px;
    align-items: flex-start;
  }
  
  .footer-column {
    gap: 6px;
  }
  
  .footer-column h3 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 6px;
    color: #ffffff;
  }
  
  .footer-column a {
    font-size: 12px;
    color: #ffffff;
    text-decoration: none;
  }
}


@media (max-width: 424px) {
  .footer {
    height: auto;
    padding: 0;
    margin-top: 40px;
    background: none;
    position: relative;
    overflow: hidden;
    border-bottom-right-radius: 62px;
  }
  
  .footer-content {
    display: flex;
    flex-direction: row;
    gap: 0;
    max-width: none;
    position: relative;
  }
  
  .footer-brand-section {
    background-color: #ffffff;
    padding: 25px 20px;
    width: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 2;
    border-bottom-right-radius: 72px;
  }
  
  .footer-brand {
    flex-direction: row;
    gap: 8px;
    align-items: center;
  }
  
  .footer-logo {
    width: 20px;
    height: auto;
  }
  
  .footer-text {
    display: flex;
    align-items: center;
  }
  
  .footer-text-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
  }
  
  .footer-links-section {
    background-color: #00338d;
    padding: 16px 42px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
  }
  
  .footer-links {
    display: flex;
    gap: 25px;
    align-items: flex-start;
  }
  
  .footer-column {
    gap: 6px;
  }
  
  .footer-column h3 {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 6px;
    color: #ffffff;
  }
  
  .footer-column a {
    font-size: 10px;
    color: #ffffff;
    text-decoration: none;
  }
}