body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
  }
  
  nav {
    background: linear-gradient(to right, #63db34, #44ad55ee);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-r{
    display: flex;
    gap: 1vw;
    color: #fff;
  }

  .nav-r h3{
    font-weight: 600;
    opacity: 0.80;
  }
  .nav-r span{
    font-size: 1vw;
  }

  .dps-logo{
    height: 20px;
    width: 40px;
    display: flex;
    align-items: center;
    padding-top: 1vw;
  }

  .logo{
    background-image: url(Dps.png);
    background-size: cover;
    height:50px;
    width: 40px;
    display: flex;
    align-items: center;
  }

  .nav-links {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }

  .nav-links i {
color: white;
  }
  
  .nav-links li {
    display: inline;
    margin-right: 20px;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
  }
  
  .container {
    max-width: 800px;
    margin: 50px auto;
    text-align: center;
  }
  
  .features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  
  .feature {
    width: 45%;
    padding: 20px;
    background-color: #f9f9f9;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .feature h2 {
    color: #333;
  }
  
  .feature p {
    color: #666;
  }
  
  .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #63db34;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background-color: #44ad55ee;
  }
  
  footer {
    color: black;
    padding: 20px;
    text-align: center;
  }
  