body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  border-bottom: 3px solid orange;
  background-color: white;
  flex-wrap: wrap;
}

.left-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  height: 50px;
    width: 250px;
}

.branding {
  line-height: 1.2;
}

.company-name {
  margin: 0;
  font-size: 22px;
  font-weight: bold;
  color: #0047b3; /* Deep blue */
  letter-spacing: 1px;
}

.tagline {
  margin: 0;
  font-size: 14px;
  color: green;
  font-weight: 500;
}

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

.nav-bar a {
  text-decoration: none;
  color: #111;
  font-weight: 600;
  font-size: 14px;
}


.nav-bar a:hover {
  color: #0047b3;
}

.search-icon {
  font-size: 18px;
  cursor: pointer;
}


/* Specifically target login button and override */
.nav-bar .login-btn {
  background-color: #007bff;
  color: white !important;  /* <- Force white text */
  padding: 7px 25px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  margin-left: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: none;
}

.nav-bar .login-btn:hover {
  background-color: #00419b;
}


html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;  /* Takes up all available space to push footer down */
}

.site-footer {
  background-color: #1e3d75;
  color: white;
  font-family: 'Segoe UI', sans-serif;
  padding: 30px 40px 10px;
}

.footer-top {
  background-color: #007bdb;
  padding: 30px;
  border-radius: 6px;
  margin-bottom: 40px;
}

.footer-message {
  max-width: 600px;
  color: white;
}

.footer-message h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.footer-message p {
  margin: 0 0 20px;
  font-size: 16px;
}


.footer-cta {
  background-color: #007bdb;
  color: white;
  padding: 40px 60px;
  border-radius: 6px;
  margin: 0 auto;
  max-width: 85%;
  margin-top: 40px;
}

.footer-cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-text h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.cta-text p {
  margin: 0;
  font-size: 16px;
}

.footer-cta-btn {
  background-color: white;
  color: #007bdb;
  font-weight: bold;
  border-radius: 30px;
  padding: 12px 25px;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  margin-top: 15px;
}

.site-footer {
  background-color: #1e3d75;
  padding: 40px;
  color: white;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column a {
  color: white;
  text-decoration: none;
}

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

.optin-btn {
  background-color: white;
  color: #1e3d75;
  font-weight: bold;
  border-radius: 30px;
  padding: 10px 20px;
  text-align: center;
  margin-bottom: 15px;
  text-decoration: none;
  display: inline-block;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.footer-cta {
  background-color: #007bdb;
  color: white;
  padding: 40px 60px;
  border-radius: 6px;
  max-width: 85%;
  margin: 40px auto 0;
}

.footer-cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-text h2 {
  margin-bottom: 10px;
  font-size: 24px;
}

.cta-text p {
  font-size: 16px;
}

.footer-cta-btn {
  background-color: white;
  color: #007bdb;
  font-weight: bold;
  border-radius: 30px;
  padding: 12px 25px;
  text-decoration: none;
  white-space: nowrap;
}

.site-footer {
  background-color: #1e3d75;
  color: white;
  padding: 40px;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column a {
  color: white;
  text-decoration: none;
}

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

.footer-contact {
  align-items: flex-start;
}

.optin-btn {
  background-color: white;
  color: #1e3d75;
  font-weight: bold;
  border-radius: 30px;
  padding: 10px 25px;
  text-align: center;
  margin-bottom: 10px;
  display: inline-block;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons img {
  width: 24px;
  height: 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 2px solid orange;
  margin-top: 30px;
  flex-wrap: wrap;
}

.footer-logo {
  height: 50px;
}

.footer-right {
  text-align: right;
  font-size: 14px;
  color: #ccc;
  line-height: 1.5;
}


.social-icons img {
  width: 24px;
  height: 24px;
}


.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px;
  background-color: #1e3d75;
  padding-top: 80px;
  color: white;
  flex-wrap: wrap;
}


.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo {
  height: 50px;
}

.footer-brand-text {
  line-height: 1.2;
}

.footer-company-name {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  color: #007bff;
}

.footer-tagline {
  margin: 0;
  font-size: 14px;
  color: #5cc25f;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p + p {
  margin-top: 5px;
}

.footer-bottom .copyright {
  text-align: right;
  font-size: 14px;
  line-height: 1.6;
  color: #ddd;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
}