/* Brand color definitions */
:root {
  --brand-primary: #0056b3;
  --brand-red: #d9534f;
  --brand-blue: #0056b3;
}

/* Made in USA logo enhancement */
.made-in-usa-logo {
  max-width: 145px;
  transition: transform 0.5s ease;
}

.made-in-usa-logo:hover {
  transform: rotate(5deg);
}

/* Patriotic badge styling */
.patriotic-badge {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.patriotic-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Benefit card enhancements */
.benefit-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-color: #dee2e6;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon-wrapper {
  height: 64px;
  width: 64px;
  background-color: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.benefit-icon-wrapper i {
  font-size: 2rem;
}

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

.fade-in {
  animation: fadeInUp 0.5s ease forwards;
}