:root {
  --primary-cyan: #1B75BC;
  --secondary-orange: #E67E22;
  --dark-gray: #333333;
  --black: #000000;
  --white: #FFFFFF;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.4);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: var(--dark-gray);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
}

.background-blobs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.blob {
  position: absolute;
  filter: blur(80px);
  opacity: 0.2;
  border-radius: 50%;
  animation: float 20s infinite alternate;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: var(--primary-cyan);
  top: -100px;
  right: -100px;
  animation-duration: 15s;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: var(--secondary-orange);
  bottom: -50px;
  left: -50px;
  animation-duration: 25s;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(50px, 50px) scale(1.1); }
}

.container {
  width: 100%;
  max-width: 600px;
  padding: 2.5rem;
  margin: 1.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  text-align: center;
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.logo {
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.logo img {
  max-width: 260px;
  height: auto;
}

h1 {
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--black);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

p {
  color: #666;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  padding: 1.25rem 2.5rem;
  background: var(--secondary-orange);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(230, 126, 34, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin-bottom: 2.5rem;
  border: 2px solid transparent;
}

.cta-button:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(230, 126, 34, 0.4);
  background: #d35400;
}

.cta-button:active {
  transform: translateY(-1px) scale(1);
}

.footer {
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-link {
  color: var(--primary-cyan);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: opacity 0.2s;
}

.contact-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.compliance-badge {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.compliance-badge::before,
.compliance-badge::after {
  content: '';
  height: 1px;
  width: 20px;
  background: #eee;
}

@media (max-width: 480px) {
  .container {
    padding: 2rem 1.5rem;
  }
  h1 {
    font-size: 2rem;
  }
}
