.banner-container {
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.banner-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Modern Banner */
.banner-modern {
  background-color: #2563eb;
  position: relative;
}

.banner-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
}

.banner-modern .banner-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.banner-modern .banner-description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Gradient Banner */
.banner-gradient {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.banner-gradient .banner-text-column {
  padding: 40px;
}

.banner-gradient .banner-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.banner-gradient .banner-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.banner-gradient .banner-image-column {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Minimal Banner */
.banner-minimal {
  background-color: #f8f9fa;
  border-bottom: 1px solid #e5e7eb;
}

.banner-minimal .banner-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.banner-minimal .banner-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #666;
}

/* Common Button Styles */
.banner-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.banner-button {
  padding: 12px 32px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.banner-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .banner-container {
    padding: 60px 16px;
  }

  .banner-modern .banner-title,
  .banner-gradient .banner-title,
  .banner-minimal .banner-title {
    font-size: 2rem;
  }

  .banner-modern .banner-description,
  .banner-gradient .banner-description,
  .banner-minimal .banner-description {
    font-size: 1.1rem;
  }

  .banner-gradient .banner-text-column {
    padding: 20px;
  }

  .banner-buttons {
    flex-direction: column;
    align-items: center;
  }

  .banner-button {
    width: 100%;
    max-width: 300px;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-content {
  animation: fadeInUp 0.8s ease-out;
} 