.container{
    padding: 5rem 3rem;
}


.contact-link{
  background-color: #004aad;
  border-radius: 1rem; border: 1px solid #004aad;
  color: #FFFFFF;
 }

.contact-section {
    /* background-image: url('../images/products-background.png'); */
    background-size: cover; /* Make the background image cover the entire area */
    background-position: center; /* Center the background image */
    background-repeat: no-repeat; /* Prevent the background image from repeating */
  }

.text-white{
    color: #FFFFFF;
}


/* footer */

.footer {
    background-color: #004aad; /* Adjust to match your blue color */
    color: white;
    padding: 40px;
  }
  .footer a {
    color: white;
    text-decoration: none;
  }
  .footer a:hover {
    text-decoration: underline;
  }
  .footer .divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 20px 0;
  }


  @media (max-width: 600px) {
    .contact-link {
        background-color: #F8F9FA;
        border-radius: 1rem;
        border: 1px solid #FFFFFF;
        color: #004aad;
    }

    .contact-nav-item{
      margin-left: 0px !important;
      margin-right: 0px !important;
    }
  }