/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #FFFFFF;
  color: #373A40;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Navbar */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 5px 0;
  padding-top: 15px;
  background-color: transparent;
  /*transition: all 0.3s ease;*/
  z-index: 1000;
  border-bottom: 0.5px solid #00050f11;
}

#navbar.scrolled {
  background-color: #FFFFFF;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 99px;
  height: 55px;
  text-align: left;
  display: block;
  /*background-image: url("../media/brand/Logo.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;*/
}
.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #3572EF;
}

.btn {
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #3572EF;
  color: #ffff;
  border: none;
}

.btn-primary:hover {
  background-color: #4D82BF;
  color: #ffff!important;
}

.btn-outline {
  border: 1px solid #3572EF;
  color: #3572EF;
  background-color: transparent;
}

.btn-outline:hover {
  background-color: #D8E5FF;
}



.custom-footer {
  background-color: #f5f9fc;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #333;
  padding: 40px 0;
  border-top: 20px solid #ffffff;
}
/*Style all p of custom footer*/
.custom-footer p {
  margin: 0;
  font-size: 12px;
  color: #333;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding: 2vh 0;
}

.footer-column {
  flex: 1;
  width: fit-content;
}
.site-links{
  max-width: fit-content;
  padding: 0 5%;
}

.logo-column .footer-logo {
  width: 180px;
}

.icon-text{
  margin-bottom: 1vh;
}
.icon-text p {
  min-height: 18px;
}

.icon-text .icon {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.site-links h4,
.newsletter h4 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 14px;
}

.icon-text a,
.site-links a,
.footer-links a {
  display: block;
  color: #333;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 12px;
}

.icon-text a:hover,
.site-links a:hover,
.footer-links a:hover {
  color: #f90;
}

.newsletter-form {
  display: flex;
  margin-top: 10px;
}

.newsletter-form input {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 6px 0 0 6px;
  flex: 1;
  font-size: 12px;
}

.newsletter-form button {
  padding: 8px 16px;
  background-color: #f90;
  color: white;
  border: none;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  font-size: 12px;
}

.footer-bottom {
  border-top: 1px solid #ccc;
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 2vh 0;
}

.footer-links {
  display: flex;
  gap: 10px;
  font-size: 14px;
}

.footer-links span {
  color: #999;
}

