 /* Full-width styles */
 body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 955px; /* Set the maximum width of the content */
    margin: 0 auto; /* Center the container horizontally */
    padding: 20px; /* Add padding inside the container */
   
 
}

h1 {
    text-align: center;
    color: #0056b3;
    margin-top: 0;
}

h2 {
    color: #0056b3;
    margin-top: 20px;
}

ul {
    margin: 10px 0 20px 20px;
    padding: 0;
    list-style: disc;
}

p, ul, li {
    font-size: 16px;
    text-align: justify;
}

a {
    color: #0056b3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    margin-top: 30px;
    padding: 10px 0;
    font-size: 14px;
    background-color: #0056b3;
    color: #fff;
}

footer a {
    color: #fff;
    text-decoration: underline;
}
.main_header{
  background-color: #14453D;
    width: 100%;
    position: static;
   
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.header{
    color: #fff;
    /* background-color: #333; */
    height: 30px;
}


/* media Query */
/* Extra Small Devices (Phones, Portrait) */
@media (max-width: 576px) {
    /* Styles for small phones */
    .h2{
        font-size: 2px;
        background-color: #333;
    }
  }
  
  /* Small Devices (Phones, Landscape) */
  @media (min-width: 577px) and (max-width: 767.98px) {
    /* Styles for larger phones */
  }
  
  /* Medium Devices (Tablets) */
  @media (min-width: 768px) and (max-width: 991.98px) {
    /* Styles for tablets */
  }
  
  /* Large Devices (Desktops, small laptops) */
  @media (min-width: 992px) and (max-width: 1199.98px) {
    /* Styles for desktops */
  }
  
  /* Extra Large Devices (Large desktops) */
  @media (min-width: 1200px) and (max-width: 1399.98px) {
    /* Styles for large desktops */
  }
  
  /* Ultra-Wide Screens (4K, larger displays) */
  @media (min-width: 1400px) {
    /* Styles for ultra-wide screens */
  }
  
