body {
  background: #000;
  color: #eee;
  font-family: system-ui, sans-serif;
}

.fancy-section {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.fancy-section h1 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 3rem;
  color: #f5f5f5;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.15);
}

.fancy-item {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fancy-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.15);
}

.fancy-image img {
  width: 200px;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.25);
}

.fancy-text h2 {
  margin: 0 0 0.4rem 0;
  font-size: 1.6rem;
  color: #ffd86b;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.25);
}

.fancy-text a {
  display: inline-block;
  margin-bottom: 1rem;
  color: #ffdd88;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.fancy-text a:hover {
  color: #fff;
}

.fancy-text p {
  line-height: 1.6;
  color: #ccc;
  font-size: 1rem;
}

/* RESPONSIVE */
/*@media (max-width: 900px) {
  .fancy-item {
    flex-direction: column;
    text-align: center;
  }
*/
@media (max-width: 600px) {
  .fancy-text p {
    font-size: 1.05rem;
  }

  .fancy-text h2 {
    font-size: 1.8rem;
  }

  .fancy-image img {
    width: 220px;
  }
}

  .fancy-image img {
    margin: 0 auto;
  }
}

.footer-legal {
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.8rem;
  color: #777;
  background: #000;
}
