body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #f7f7f7 0%, #e3e6ed 100%);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  background: url('https://www.transparenttextures.com/patterns/paper-fibers.png');
  opacity: 0.25;
  pointer-events: none;
  filter: blur(1.5px);
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  padding: 48px 8px 32px 8px;
  position: relative;
  z-index: 1;
}

.main-logo {
  width: 50vw;
  max-width: 420px;
  min-width: 220px;
  margin-bottom: 56px;
  margin-top: 24px;
  display: block;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.07));
}

.brand-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 48px;
  width: 100%;
  max-width: 1000px;
}

.brand-logo {
  width: 200px;
  height: 200px;
  object-fit: contain;
  background: rgba(255,255,255,0.85);
  border-radius: 32px;
  box-shadow: 0 6px 32px 0 rgba(0,0,0,0.10), 0 1.5px 8px 0 rgba(0,0,0,0.04);
  padding: 8px;
  border: 1.5px solid #e3e6ed;
  backdrop-filter: blur(2px);
  transition: none;
}

.brand-logo:hover {
  transform: none;
  box-shadow: 0 6px 32px 0 rgba(0,0,0,0.10), 0 1.5px 8px 0 rgba(0,0,0,0.04);
  border-color: #e3e6ed;
}

@media (max-width: 900px) {
  .brand-logo {
    width: 140px;
    height: 140px;
    padding: 4px;
    border-radius: 22px;
  }
  .brand-logos {
    gap: 24px 12px;
  }
}

@media (max-width: 600px) {
  .main-logo {
    width: 95vw;
    max-width: 98vw;
    margin-bottom: 32px;
  }
  .brand-logo {
    width: 100px;
    height: 100px;
    padding: 2px;
    border-radius: 14px;
  }
  .brand-logos {
    gap: 14px 6px;
  }
}

.footer {
  width: 100%;
  text-align: center;
  font-size: 1.05rem;
  color: #6a6a6a;
  background: none;
  margin-top: 48px;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
} 