.site-footer {
  background-color: #1f3c61;
  color: white;
  font-family: sans-serif;
  padding: 2rem 1rem;
  width: 100%;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 2rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  margin: 1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.89em;
}

.footer-column a {
  color: #FFF;
  text-transform: none;
  text-decoration: none;
  font-weight: 500;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 1rem;
}

.icon {
  font-size: 1.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center; /* horizontal centering of flex container */
  align-items: center;     /* vertical centering of items */
  gap: 1rem;               /* spacing between logo and text */
  padding: 1rem 0;
  font-size: 0.9rem;
  text-align: left; /* optional, to keep text aligned left */
}

.footer-bottom-logo {
  max-height: 50px; /* Adjust as needed to align well */
  height: auto;
  width: auto;
}

.footer-bottom-text {
  padding-top: 16px;
}

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

/* ===============================
   NEWSLETTER BAR
================================= */
.newsletter-bar {
    background-color: #96b234;
    padding: 30px 20px;
  }
  
  .newsletter-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-decoration: none;
    color: #003366;
  }

  .newsletter-text span {
    color: #FFF; 
  }

  /* ===============================
     DESKTOP
  ================================= */
  
  @media (min-width: 769px) {
    .newsletter-content {
        display: grid;
        grid-template-columns: 320px 1fr;
        grid-template-areas:
          "image headline"
          "image small";
        column-gap: 40px;  
        row-gap: 4px;       /* smaller vertical gap */
        align-items: start; /* align items to top to prevent extra spacing */
        grid-template-rows: auto auto; 
    }
	  
	  
	.newsletter-content-2 {
		display: grid;
		grid-template-columns: 1fr 320px;
		grid-template-areas:
		"headline image"
		"small image";
		column-gap: 40px;
		row-gap: 4px;
		align-items: start;
	}

    .newsletter-image {
      grid-area: image;
    }
  
    .newsletter-text {
      grid-area: headline;
      font-size: 18px;
      font-weight: 700;
      margin: 0;          /* remove default paragraph margin */
    }
  
    .newsletter-text-small {
      grid-area: small;
      font-size: 14px;
      margin: 0;          /* remove default paragraph margin */
    }
  
    .newsletter-image img {
      width: 100%;
      display: block;
    }
    .newsletter-text,
    .newsletter-text-small,
    .newsletter-text p,
    .newsletter-text-small p {
        margin: 0;      /* remove all default paragraph spacing */
        padding: 0;     /* optional, just to be safe */
        line-height: 1.4; /* adjust line spacing if needed */
    }
    
  }
    
  /* ===============================
     MOBILE
  ================================= */
  
  @media (max-width: 768px) {
    .newsletter-content,.newsletter-content-2  {
      display: flex;
      flex-direction: column;
      text-align: center;
      gap: 20px;
    }
  
    .newsletter-text {
      order: 1;
      font-size: 18px;
      font-weight: 700;
    }
	  
    .newsletter-image {
      order: 2;
    }
  
    .newsletter-text-small {
      order: 3;
      font-size: 15px;
    }
  
    .newsletter-image img {
      width: 100%;
      max-width: 400px;
    }
  }


.newsletter-button-container {
  margin-top: 40px;
  margin-bottom: 40px;
}

.newsletter-button {
  background: #1f3c61;
  padding: 10px;
  color: #FFF;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  max-width: 200px;
}
