 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
          background-color: #f9f9f9;
  min-height: 100%;
      font-family: Arial, sans-serif;
      padding-top: 60px; /* To avoid content hidden behind fixed navbar */
    }
main {
  background-color: #8393a4; /* or any color you prefer */
  padding: 30px 20px;
}

    .navbar {
       position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #2c3e50;
  display: flex;
  justify-content: center; /* centers the title horizontally */
  align-items: center;     /* centers content vertically */
  padding: 0 20px;
  color: white;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    .navbar .logo {
      position: absolute;
  left: 20px;
  height: 80px;
  width: 80px;
    }

    .navbar .title {
          font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
    }
.terms-container {
  max-width: 900px;
  margin: auto;
  padding: 20px;
  font-size: 16px;
  line-height: 1.6;
background-color: #2c3e50;
  color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.container{
    color: black;
    
    
}
.container p,h3,a{
    font-family: monospace;
}
.msme-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto; /* centers the image */
    padding: 10px;
    border-radius: 10px; /* optional: rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* optional: shadow effect */
}

    /* Responsive */
    @media (max-width: 480px) {
      .navbar {
        padding: 10px 15px;
      }

      .navbar .title {
        font-size: 1.2rem;
      }

      .navbar .logo {
        height: 30px;
        width: 30px;
        margin-right: 10px;
      }
       .terms-container {
    padding: 15px;
    font-size: 15px;
  }
    }