* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: #0f0b26;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

header {
	background:url('images/headerbg.png') left top repeat-x;
    color: #fff;
    padding: 10px 0;
    margin: 0px;
    display: flex;
}
.logo {
  float: left;
  margin-right: 20px; /* optional spacing */
}
.logo img {
  height: 100px;
  width: auto;
  display: block;
}

nav {
    float: right;
    margin-top: 28px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
background: linear-gradient(to bottom,  #ff3019 0%,#cf0404 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

    padding: 10px 22px;
    border-radius: 6px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
}

.hero {
  background: #007bff;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.hero .btn {
  background: #fff;
  color: #007bff;
  padding: 10px 20px;
  margin-top: 20px;
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.features {
  padding: 60px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: center;
}

.feature-box {
  flex: 1 1 30%;
  margin: 10px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
}

footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}
    .pdf-container {
      width: 100%;
      height: 100vh;
    }
    embed {
      width: 100%;
      height: 100%;
      border: none;
    }
	section.features {
    display: block;
    padding: 0px;
    margin: 0px;
    width: 100%;
}
	
/* Responsive */
@media (max-width: 768px) {
.nav-links {
        text-align: right;
        float: left;
        flex-direction: row;
        padding: 10px 15px;
        width: 100%;
    }

  .features {
    flex-direction: column;
  }

  .feature-box {
    width: 100%;
  }

  header .container {
    text-align: center;
  }

  .logo,
  nav {
    float: none;
  }
    .logo {
    float: none;
    text-align: center;
    margin: 10px auto;
  }

  .logo img {
    max-height: 100px; /* Smaller logo for mobile */
    height: auto;
    width: auto;
  }
}
