body, html {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: #f0f0f0;
  height: 100%;
  overflow-x: hidden;
}

.logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
}

.S2A-logo {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 0 5px #656565);
}

.glass-box {
  max-width: 800px;
  margin: 20px auto 20px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(14px);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  z-index: 1;
  position: relative;
  color: #222;
}

h1 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
  color: #333;
}

h2 {
  margin-top: 25px;
  font-size: 22px;
  color: #444;
}

p, ul {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

footer {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #777;
}



.S2A-logo:hover{
  transform: scale(1.1);
   transition-duration: 1s;
   
}