
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

.full-width-bg {
  display: block;
  width: 100vw;
  height: 90vh;
}


    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: #fafafa;
      color: #222;
      line-height: 1.5;
    }

    .part1 {
      background-image: url("bkgrd_img.jpg");
      background-size: cover;
      background-position: center top;
      background-repeat: no-repeat;
    }

    .background_image {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      width: 100%;
      height: 100%;
      max-height: none;
      max-width: none;
      object-fit: cover;
      padding: 0;
    }

    #logo {
      text-align: center;
    }

    #logo img {
      padding: 1vh 0 0 0;
      height: 8vh;
    } 

    #front_txt {
      text-align: center;
      padding: 55vh 0 0 0;
      color: white;
    }

    #front_txt p {
      padding: 1rem;
      margin: 0;
    }

    .part2 {
      display: block;
      padding: 5rem;
    }

    .footer {
      display: block;
    }

    header h1 {
      margin: 0;
      font-size: 2.2rem;
    }

    header p {
      max-width: 700px;
      margin: 15px auto 0;
      font-size: 1.1rem;
      color: #555;
    }

    h2 {
      margin-top: 30px;
      font-size: 1.2rem;
    }

    .btn {
      display: inline-block;
      margin-top: 25px;
      padding: 14px 22px;
      background: #f1641e;
      color: white;
      text-decoration: none;
      border-radius: 10px;
      font-weight: bold;
      transition: 0.2s;
    }

    .btn:hover {
      background: #d95317;
    }

    main {
      display: none;
      max-width: 900px;
      margin: 30px auto;
      padding: 0 20px;
      background: white;
      border-radius: 14px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.06);
      padding: 25px;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 18px;
      margin-top: 30px;
    }

    .card {
      background: white;
      padding: 18px;
      border-radius: 14px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    }

    .card h2 {
      font-size: 1.1rem;
      margin-top: 0;
    }

    .card p {
      color: #555;
      margin-bottom: 0;
      font-size: 0.95rem;
    }

    footer {
      text-align: center;
      padding: 25px 20px;
      font-size: 0.9rem;
      color: #777;
      border-top: 1px solid #eee;
      margin-top: 60px;
      background: white;
    }

    .links a {
      color: #f1641e;
      text-decoration: none;
      font-weight: bold;
    }

    .links a:hover {
      text-decoration: underline;
    }

@media (max-width: 768px) {
  .full-width-bg {
    width: 100%;
    height: 60vh;
  }
  #logo img {
    padding: 1vh 0 0 0;
    height: 5vh;
  } 
  #front_txt {
    text-align: center;
    padding: 20vh 0 0 0;
  }
  .part2 {
    display: block;
    padding: 1rem;
  }
}
