/* Reset some default styles */
body, h1, h2, h3, h4, h5, h6, p, ul, li, a {
    margin: 0;
    padding: 0;
  }
  
  /* Set box-sizing to border-box for all elements */
  * {
    box-sizing: border-box;
  }
  
  /* Set some basic styles for the page */
  body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333333;
    background-color: #f7f7f7;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Header styles */
  header {
    background-color: pink;
    padding: 20px 0;
    position: sticky;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    text-align: center;
  }
  
  .navbar-brand {
    font-size: 24px;
    font-weight: 700;
    color: black;
    text-decoration: none;
  }
  
  .navbar-nav {
    display: flex;
    list-style: none;
    justify-content: flex-start; /* Align the navigation items to the left */
    align-items: center; /* Vertically center the navigation items */
    flex-wrap: wrap;
  }
  
  .nav-item {
    margin-left: 20px;
  }
  
  .nav-link {
    font-size: 18px;
    font-weight: 400;
    color: black;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .nav-link:hover {
    color: #cccccc;
  }
  
  /* Content styles */
  .content {
    margin-top: 40px;
  }
  
  /* Footer styles */
  footer {
    background-color: pink;
    padding: 20px 0;
    color: black;
  }
  
  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-container h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: black;
  }
  
  .footer-container ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
  }
  
  .footer-container ul li {
    margin-bottom: 10px;
  }
  
  .footer-container ul li a {
    color: black;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-container ul li a:hover {
    color: #cccccc;
  }
  
  .footer-container p {
    font-size: 14px;
  }
  
  @media (max-width: 767px) {
    /* Adjust the styles for mobile devices */
  
    .navbar-nav {
      justify-content: center; /* Center align the navigation items */
    }
  
    .navbar-brand,
    .nav-link {
      width: 100%; /* Make the links fill the entire width */
      text-align: center;
    }
  }
  