body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
  background: var(--primary-bg);
  color: #f0f0f0;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background: transparent;
}

.panel {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  background: transparent;
}

.panel:nth-of-type(even) {
  background: transparent;
}

.panel .content {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  width: 100%;
}

.panel .text {
  flex: 1;
  text-align: left;
  color: #f0f0f0;
}

.panel .text h2 {
  margin-top: 0;
  font-size: 2rem;
  color: #fff;
}

.panel .text p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #f0f0f0;
}

.panel .image {
  flex: 1;
}

.panel .image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.panel-cta {
  background: transparent;
}

.panel-cta .inner {
  text-align: center;
}

.cta-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: #fff;
  color: #446AFF;
  text-decoration: none;
  border-radius: 4px;
}

.cta-button:hover {
  background: #e0e0e0;
}

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