/* General Reset */
body, html {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  height: 100%;
  overflow: hidden;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('backgroundpmi.jpg') no-repeat center center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 20px;
  box-sizing: border-box;
}

/* Logo */
.logo {
  position: absolute;
  top: 20px;
  left: 20px;
  height: 40px;
  z-index: 2;
}

/* Hero Title + Subtitle */
.hero-content {
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-title {
  font-size: 60px;
  font-weight: 600;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  margin: 0;
}

.hero-subtitle {
  font-size: 32px;
  margin-top: 10px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* Info Box */
.info-box {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background-color: rgba(0, 150, 200, 0.9);
  padding: 20px 30px;
  border-radius: 8px;
  color: #fff;
  text-align: left;
  max-width: 320px;
  box-sizing: border-box;
}

.info-box h2 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
}

.info-box p {
  margin: 0 0 15px;
  font-size: 14px;
  font-weight: 400;
}

.info-box a.button {
  display: inline-block;
  background: #ffffff;
  color: #0096c8;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 100px 20px 40px;
    overflow: hidden;
  }

  .logo {
    top: 15px;
    left: 15px;
    height: 32px;
  }

  .hero-title {
    font-size: 36px;
    margin-top: 60px;
  }

  .hero-subtitle {
    margin-top: 4px;
    font-size: 19px;
  }

.info-box {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 360px;
  padding: 20px;
  box-sizing: border-box;
  background-color: rgba(0, 150, 200, 0.95);
  text-align: center;
  border-radius: 10px;
}

  .info-box h2 {
    font-size: 18px;
  }

  .info-box p {
    font-size: 14px;
    margin: 0 0 15px;
  }

  .info-box a.button {
    width: 80%;
    padding: 12px;
    font-size: 16px;
    box-sizing: border-box;
  }
}
