body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
  color: #111;
  text-align: center;
}

.hero {
  background: url('bg.jpg') no-repeat center center;
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 40px;
  position: relative;
  color: #000;
}

.logo-main {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.3;
}

.logo-circle {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.logo-circle img {
  width: 80px;
  height: 80px;
}

h1 {
  font-size: 24px;
  margin: 20px 0 10px;
}

.description {
  max-width: 700px;
  margin: 0 auto 30px;
  padding: 0 20px;
  font-size: 14px;
  line-height: 1.6;
  text-transform: uppercase;
  color: #444;
}

.button-box {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}

.card {
  display: flex;
  align-items: center;
  background: #f9f9f9;
  border-radius: 8px;
  padding: 12px 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-2px);
}

.card img {
  width: 40px;
  height: 40px;
  margin-right: 12px;
}

.card a {
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  color: #000;
}
