* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f8f9fa;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
}
.container {
  text-align: center;
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  max-width: 400px;
  width: 90%;
}
.status { font-size: 1.3rem; margin-bottom: 1rem; color: #495057; font-weight: 500; }
.spinner {
  border: 4px solid #e9ecef;
  border-top: 4px solid #007bff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}
.spinner-center { margin: 0 auto 1rem; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 3px;
  overflow: hidden;
  margin: 1rem 0;
}
.progress-fill { height: 100%; background: linear-gradient(90deg, #4CAF50, #45a049); width: 0%; animation: progress 2s ease-in-out forwards; }
@keyframes progress { 0% { width: 0%; } 100% { width: 100%; } }
.security-info { font-size: 0.9rem; opacity: 0.8; }
.shield-icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.8; }
.business-container {
  display: none;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  background: white;
  color: #333;
  min-height: 100vh;
}
.business-header { background: #2c3e50; color: white; padding: 1rem 0; }
.business-content { padding: 3rem 0; }
.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 3rem;
}
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 3rem 0; }
.service-card { background: #f8f9fa; padding: 2rem; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.hidden { display: none !important; }
