#docs.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: none !important;
}

.docs-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.docs-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 8px 30px rgba(74, 144, 226, 0.4);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.docs-icon svg {
  color: white;
}

.docs-message {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.docs-apology {
  font-size: 1.1rem;
  color: var(--light-blue);
  font-weight: 600;
  margin-bottom: 3rem;
}

.docs-info {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.info-card {
  background: rgba(74, 144, 226, 0.1);
  border: 1px solid var(--primary-blue);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.info-card svg {
  color: var(--light-blue);
  flex-shrink: 0;
}

.info-card p {
  margin: 0;
  color: var(--text-light);
  font-weight: 500;
}

.docs-cta {
  margin-top: 4rem;
  position: relative;
  z-index: 2;
}

.docs-cta > p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-gray);
}

.docs-cta .cta-buttons {
  position: relative;
  z-index: 3;
}

/* Responsive styles for documentation page */
@media (max-width: 768px) {
  .docs-icon {
    width: 80px;
    height: 80px;
  }

  .docs-icon svg {
    width: 50px;
    height: 50px;
  }

  .info-card {
    flex-direction: column;
    text-align: center;
  }

  .docs-message {
    font-size: 1rem;
  }

  .docs-apology {
    font-size: 1rem;
  }

  .docs-cta > p {
    font-size: 1rem;
  }
}
