/* Subscription Button Styles */
.subscription-btn {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-family: 'Lexend', sans-serif;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 200px;
  justify-content: center;
}

.subscription-btn:hover {
  background-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.subscription-btn i {
  font-size: 20px;
}

/* Newsletter Section Button */
.newsletter .subscription-btn {
  margin: 0 auto;
  font-size: 18px;
  padding: 14px 32px;
  min-width: 240px;
}

/* Hero Section Button */
.hero-content .subscription-btn {
  margin-bottom: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .subscription-btn {
    width: 100%;
    max-width: 300px;
  }
} 