/* GENERAL STYLES */

/* Reset and base styles are handled in root.css */

/* Additional global styles can be added here if needed */

/* Utility classes */
.text-center {
  text-align: center;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

/* Common button styles */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  line-height: 1.2;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

/* Cards section styles */
.cards-section {
  padding: 3rem 0;
  background: var(--color-bg);
}

/* Info card section styles */
.info-card-section {
  padding: 2rem 0;
  background: var(--color-bg);
}