:root {
  --primary-color: #5F57FF;
  --secondary-color: #32E0C4;
  --accent-color: #FF6B6B;
  --dark-color: #2B2B2B;
  --light-color: #F9F9F9;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-color);
  line-height: 1.6;
  background: linear-gradient(135deg, #ffffff 0%, #f6f5ff 100%);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.container {
  max-width: 1000px;
  padding: 0 20px;
}

.content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.text-section {
  flex: 1;
}

.text-section h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--dark-color);
  position: relative;
}

.text-section h1 span {
  color: var(--primary-color);
}

.text-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #555;
  max-width: 90%;
}

.status {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-indicator {
  width: 12px;
  height: 12px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(50, 224, 196, 0.7);
  animation: pulse 2s infinite;
}

.status p {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
}

.image-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-section img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(50, 224, 196, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(50, 224, 196, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(50, 224, 196, 0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .content {
    flex-direction: column;
    text-align: center;
  }

  .text-section p {
    margin: 0 auto 30px;
    max-width: 100%;
  }

  .status {
    justify-content: center;
  }
}
