body {
  margin: 0;
  padding: 0;
  background-image: radial-gradient(circle, #0c1d23, #062428, #012a2c, #00312c, #07372a);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 20px;
  flex-wrap: wrap;
}

.left-content {
  flex: 1;
  min-width: 300px;
  text-align: center;
  padding: 20px;
}

.logo {
  max-width: 444px;
  width: 100%;
  margin-bottom: 80px;
}

.social-icons a {
  color: #c6973b;
  font-size: 26px;
  margin: 0 15px;
  transition: color 0.3s ease, transform 0.2s ease;
}

.social-icons a:hover {
  color: #e1b661;
  transform: scale(1.1);
}



@media (max-width: 768px) {
  .container-wrapper {
    flex-direction: column;
  }
  .logo {
    margin-bottom: 40px;
  }
}
