body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h2,
h3,
p {
    margin: 0;
}

.header-container {
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    position: relative;
}

.subheader {
    padding: 6px;
}

.subheader p {
    font-size: 12px;
    text-align: center;
}

.header {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    color: black;
    height: 50px;
    justify-content: space-between;
    width: 85%;
    margin-left: auto;
    margin-right: auto;

}

.header_navCTA {
    display: flex;
    gap: 20px;
    align-items: center;

}

.header h1 {
    margin: 0;
    font-size: 18px;
}

.navigation {
    display: flex;
    gap: 50px;
}

.navigation a {
    color: black;
    text-decoration: none;
    font-size: larger;
}

.contact-btn {
    padding: 10px 20px;
    /* Padding around the text */
    background-color: #3498db;
    /* Background color */
    color: white;
    /* Text color */
    font-size: 16px;
    /* Text size */
    border: none;
    /* No border */
    border-radius: 5px;
    /* Rounded corners */
    cursor: pointer;
    /* Cursor indicates button can be clicked */
    transition: background-color 0.3s;
    /* Smooth transition for hover effect */
    text-decoration: none;
}

.contact-btn:hover {
    background-color: #2980b9;
    /* Darker shade on hover */
}

.main-content {
    flex: 1;
  }

.footer {
    background: #007bff;
    color: #fff;
    padding: 32px 0 16px 0;
    text-align: center;
    box-shadow: 0 -2px 16px rgba(0, 123, 255, 0.08);
    margin-top: 48px;
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
  }
  
  .footer ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 2.5rem;
  }
  
  .footer ul li {
    font-size: 1.08rem;
    transition: transform 0.18s, color 0.18s;
    display: inline-block;
  }
  
  .footer ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: color 0.18s, border-bottom 0.18s;
  }
  

  .footer .footer-copy {
    font-size: 0.98rem;
    color: #e3e3e3;
    margin-top: 10px;
    letter-spacing: 0.2px;
  }
  
  .breadcrumbs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 0.98rem;
    color: #e3e3e3;
  }
  
  /* Responsive tweaks */
  @media (max-width: 600px) {
    .footer ul {
      gap: 0.5rem 1.2rem;
    }
    .footer {
      padding: 24px 0 10px 0;
      border-radius: 0;
    }
  }
  