.container-flex {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 800px;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.section-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
  margin-bottom: 1rem;
  font-weight: 500;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #2c2c2c;
  text-decoration: none;
  background: #ffffff;
  border: 1.5px solid #e5e5e5;
  border-radius: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.01) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.button:hover::before {
  opacity: 1;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: #d0d0d0;
}

.button:active {
  transform: translateY(0);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.arrow {
  font-size: 1rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.button:hover .arrow {
  transform: translateX(3px);
}

/* Button Variations */
.button.primary {
  background: #2c2c2c;
  color: #ffffff;
  border-color: #2c2c2c;
}

.button.primary::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.button.primary:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
}

.button.outline {
  background: transparent;
  border-color: #2c2c2c;
}

.button.outline:hover {
  background: #2c2c2c;
  color: #ffffff;
}

.button.subtle {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.button.subtle:hover {
  background: rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.button.small {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.button.large {
  padding: 1.125rem 2.25rem;
  font-size: 1rem;
}
