body {
  font-family: "Inter", sans-serif;
  background-color: #eeece2;
  color: #3d3929;
}

.hero-bg {
  background-color: #eeece2;
}

/* Add hover styles for buttons */
.btn-primary {
  background-color: #da7756;
  color: white !important;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-primary:hover {
  background-color: #bd5d3a;
  color: white !important;
  text-decoration: none;
}

/* CTA section button specific styles */
.cta-button {
  background-color: #eeece2;
  color: #da7756 !important;
  transition: all 0.3s ease;
  text-decoration: none;
}
.cta-button:hover {
  background-color: white;
  color: #da7756 !important;
  text-decoration: none;
}

.feature-card {
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

/* Navigation styles */
.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
}

/* Mobile menu styles */
@media (max-width: 768px) {
  #mobile-menu {
    height: 100vh;
    width: 85%;
    max-width: 300px;
    overflow-y: auto;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  }

  #mobile-menu a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(61, 57, 41, 0.1);
  }

  #mobile-menu a:last-child {
    border-bottom: none;
  }

  /* Improved button visibility */
  #mobile-menu-btn {
    background-color: rgba(218, 119, 86, 0.1);
    border-radius: 4px;
  }
}

/* iPad/tablet optimizations */
@media (min-width: 769px) and (max-width: 1024px) {
  nav .space-x-4 a {
    font-size: 0.9rem;
    padding: 0.5rem;
  }

  nav .h-16 {
    height: 3.5rem;
  }
}

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

@keyframes slideInRight {
  from {
    transform: translateX(30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Applied animations with optimized timing */
.animate-fadeIn {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-slideInRight {
  animation: slideInRight 0.6s ease-out forwards;
}

.animate-slideInLeft {
  animation: slideInLeft 0.6s ease-out forwards;
}

.animate-pulse {
  animation: pulse 2s infinite;
}

/* Color scheme variables */
:root {
  --primary-color: #da7756;
  --complementary-color: #000000;
  --background-color: #eeece2;
  --text-color: #3d3929;
  --button-color: #bd5d3a;
}

/* Mobile menu styles */
.mobile-menu {
  transition: transform 0.3s ease-in-out;
}

.mobile-menu.open {
  transform: translateX(0);
}

/* Hover states for navigation links */
a {
  transition: color 0.3s ease, opacity 0.3s ease;
}

/* Only apply this hover style to non-button links */
a:not(.btn-primary):not(.cta-button):hover {
  color: #da7756 !important;
  opacity: 1 !important;
}

/* Footer styles */
footer {
  background-color: #000000;
}

footer a:hover {
  color: #da7756 !important;
  opacity: 1 !important;
}

/* Override Tailwind classes with new color scheme */
.text-blue-600 {
  color: #da7756 !important;
}

.text-gray-600,
.text-gray-700,
.text-gray-800 {
  color: #3d3929 !important;
}

.bg-blue-600 {
  background-color: #da7756 !important;
}

.bg-blue-100 {
  background-color: rgba(218, 119, 86, 0.2) !important;
}

.bg-indigo-50 {
  background-color: rgba(218, 119, 86, 0.1) !important;
}

.text-indigo-600 {
  color: #bd5d3a !important;
}

.bg-gray-50 {
  background-color: rgba(238, 236, 226, 0.7) !important;
}

/* Focus states for form elements */
*:focus-visible {
  outline: 2px solid #da7756 !important;
  outline-offset: 2px;
}

/* Make sure all SVG elements use the new color scheme */
svg.text-blue-500,
svg.text-blue-600,
svg.text-indigo-500 {
  color: #bd5d3a !important;
}

.form-input {
  border: 1px solid rgba(61, 57, 41, 0.3);
  background-color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}
.form-input:focus {
  border-color: #da7756;
  background-color: rgba(255, 255, 255, 0.8);
  outline: none;
}
.captcha-container {
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(61, 57, 41, 0.2);
}
.captcha-checkbox {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #bd5d3a;
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}
.captcha-checkbox:checked {
  background-color: #bd5d3a;
}
.captcha-checkbox:checked::after {
  content: "✓";
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
}
.policy-card {
  transition: all 0.3s ease;
  border-left: 4px solid #da7756;
}
.policy-section {
  border-bottom: 1px solid rgba(61, 57, 41, 0.1);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.policy-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background-color: rgba(238, 236, 226, 0.95);
}
.cookie-icon {
  background-color: rgba(218, 119, 86, 0.1);
  color: #da7756;
  border-radius: 9999px;
  padding: 0.75rem;
  margin-right: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.faq-item {
  border-bottom: 1px solid rgba(61, 57, 41, 0.1);
  transition: all 0.3s ease;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-question {
  cursor: pointer;
  transition: all 0.3s ease;
}
.faq-question:hover {
  color: #da7756;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}
.faq-icon {
  transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.privacy-section {
  border-bottom: 1px solid rgba(61, 57, 41, 0.1);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.privacy-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.privacy-heading {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  color: #3d3929;
  font-weight: 700;
  font-size: 1.5rem;
}
.privacy-heading .icon {
  background-color: rgba(218, 119, 86, 0.2);
  color: #da7756;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 1rem;
  flex-shrink: 0;
}
.privacy-content {
  padding-left: 3.5rem;
}
.privacy-content ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.privacy-content li {
  margin-bottom: 0.75rem;
}
.privacy-note {
  background-color: rgba(218, 119, 86, 0.1);
  border-left: 4px solid #da7756;
  padding: 1rem;
  margin: 1.5rem 0;
}
.policy-section h3 {
  color: #da7756;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}
.policy-section h3 svg {
  margin-right: 0.75rem;
}
.policy-section ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.policy-section ol {
  list-style-type: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.policy-section li {
  margin-bottom: 0.5rem;
}
.policy-notice {
  background-color: rgba(218, 119, 86, 0.1);
  border-left: 4px solid #da7756;
  padding: 1rem;
  margin: 1.5rem 0;
  font-style: italic;
}
.policy-card {
  transition: all 0.3s ease;
  border-left: 4px solid #da7756;
}
.policy-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.terms-section {
  border-bottom: 1px solid rgba(61, 57, 41, 0.1);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.terms-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.terms-heading {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: #3d3929;
  font-weight: 700;
  font-size: 1.5rem;
}
.terms-heading .number {
  background-color: rgba(218, 119, 86, 0.2);
  color: #da7756;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 1rem;
  flex-shrink: 0;
}
.terms-content {
  padding-left: 3rem;
}
.terms-content ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.terms-content li {
  margin-bottom: 0.5rem;
}
.product-gallery {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.thumbnails-container {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.thumbnail {
  width: 70px;
  height: 70px;
  border: 2px solid #e5e5e5;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
  border-color: #da7756;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-image-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .thumbnail {
    width: 60px;
    height: 60px;
  }
}

.success-checkmark {
  animation: fadeIn 0.8s ease-out 0.3s forwards, pulse 2s 1.1s;
  opacity: 0;
}
.success-message {
  animation: fadeIn 0.8s ease-out 0.6s forwards;
  opacity: 0;
}
.success-details {
  animation: fadeIn 0.8s ease-out 0.9s forwards;
  opacity: 0;
}
.success-actions {
  animation: fadeIn 0.8s ease-out 1.2s forwards;
  opacity: 0;
}

/* Better support for very small phones */
@media (max-width: 360px) {
  .text-3xl {
    font-size: 1.5rem;
  }

  .text-xl {
    font-size: 1.1rem;
  }

  .px-6 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .py-2 {
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
  }

  .space-y-6 > * + * {
    margin-top: 1rem;
  }
}

/* Ensure animations work properly on mobile */
.animate-fadeIn,
.animate-slideInLeft,
.animate-slideInRight {
  opacity: 0;
}

/* Fix for mobile menu toggling */
.mobile-menu.translate-x-full {
  transform: translateX(100%);
}

/* Ensure table is scrollable on small screens */
.overflow-x-auto {
  -webkit-overflow-scrolling: touch;
}

/* Better table handling for mobile */
.overflow-x-auto {
  -webkit-overflow-scrolling: touch;
  margin-left: -1rem;
  margin-right: -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  width: calc(100% + 2rem);
}

@media (min-width: 768px) {
  .overflow-x-auto {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
}

/* Ensure table fits better on mobile */
@media (max-width: 640px) {
  table {
    min-width: 100%;
    font-size: 0.875rem;
  }

  table th,
  table td {
    padding: 0.5rem;
  }

  table th {
    white-space: nowrap;
  }
}

/* Make sure column headers don't wrap on small screens */
table th {
  white-space: nowrap;
}

/* Enhanced Testimonials Animations */

/* Base testimonial card styling with perspective for 3D effects */
.testimonial-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

/* Hover effects with gentle tilt and lift */
.testimonial-card:hover {
  transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) translateY(-8px)
    scale(1.02);
  box-shadow: 0 20px 40px rgba(218, 119, 86, 0.15),
    0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Add subtle rotation variations for each card */
.testimonial-card:nth-child(1):hover {
  transform: perspective(1000px) rotateX(1deg) rotateY(-3deg) translateY(-8px)
    scale(1.02);
}

.testimonial-card:nth-child(2):hover {
  transform: perspective(1000px) rotateX(-1deg) rotateY(2deg) translateY(-8px)
    scale(1.02);
}

.testimonial-card:nth-child(3):hover {
  transform: perspective(1000px) rotateX(2deg) rotateY(1deg) translateY(-8px)
    scale(1.02);
}

/* Floating content animation */
.floating-content {
  transition: all 0.3s ease;
}

.testimonial-card:hover .floating-content {
  transform: translateY(-2px);
}

/* Quote bubble enhanced animations */
.quote-bubble {
  position: relative;
  overflow: hidden;
}

.quote-bubble::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s;
}

.testimonial-card:hover .quote-bubble::before {
  left: 100%;
}

/* Profile image enhancements */
.profile-img {
  position: relative;
  z-index: 2;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.testimonial-card:hover .profile-img {
  border-color: rgba(218, 119, 86, 0.3);
  box-shadow: 0 4px 8px rgba(218, 119, 86, 0.2);
}

/* Micro-animations for scroll reveal */
@keyframes testimonialSlideUp {
  from {
    opacity: 0;
    transform: translateY(50px) rotateX(10deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

@keyframes testimonialFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-3px);
  }
}

/* Enhanced fade-in animation for testimonials */
.testimonial-card.animate-fadeIn {
  animation: testimonialSlideUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275)
    forwards;
}

/* Subtle floating animation on idle */
.testimonial-card {
  animation: testimonialFloat 6s ease-in-out infinite;
}

.testimonial-card:nth-child(1) {
  animation-delay: 0s;
}

.testimonial-card:nth-child(2) {
  animation-delay: 2s;
}

.testimonial-card:nth-child(3) {
  animation-delay: 4s;
}

/* Glitch-style effect for quote marks */
@keyframes glitch {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-1px, 1px);
  }
  40% {
    transform: translate(-1px, -1px);
  }
  60% {
    transform: translate(1px, 1px);
  }
  80% {
    transform: translate(1px, -1px);
  }
  100% {
    transform: translate(0);
  }
}

.quote-bubble:hover span {
  animation: glitch 0.3s ease-in-out;
}

/* Enhanced scroll-based animations */
@media (prefers-reduced-motion: no-preference) {
  .testimonial-card {
    will-change: transform;
  }

  /* Stagger the hover effects for better visual flow */
  .testimonial-card:hover ~ .testimonial-card {
    transform: perspective(1000px) translateY(-2px) scale(0.98);
  }
}

/* Mobile optimizations */
@media (max-width: 768px) {
  .testimonial-card:hover {
    transform: perspective(1000px) translateY(-4px) scale(1.01);
  }

  .testimonial-card {
    animation: none; /* Disable floating on mobile for performance */
  }
}

/* Add subtle backdrop blur effect on hover */
.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(218, 119, 86, 0.02),
    rgba(218, 119, 86, 0.05)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
  z-index: 0;
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-card > * {
  position: relative;
  z-index: 1;
}

/* Inertia-based scroll momentum */
.testimonial-card {
  scroll-behavior: smooth;
}

/* Enhanced focus states for accessibility */
.testimonial-card:focus {
  outline: 2px solid #da7756;
  outline-offset: 4px;
  transform: perspective(1000px) translateY(-4px) scale(1.01);
}

/* Pulse animation for quote bubbles */
@keyframes quotePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(218, 119, 86, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(218, 119, 86, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(218, 119, 86, 0);
  }
}

.quote-bubble {
  animation: quotePulse 3s infinite;
}

/* ===== ENHANCED BENEFITS SECTION ANIMATIONS ===== */

/* Base benefit card styling with 3D perspective */
.benefit-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid transparent;
}

/* 3D hover effects for benefit cards */
.benefit-card:hover {
  transform: perspective(1000px) rotateX(-2deg) rotateY(5deg) translateY(-12px)
    scale(1.03);
  box-shadow: 0 25px 50px rgba(218, 119, 86, 0.2),
    0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(218, 119, 86, 0.2);
}

/* Unique rotation patterns for each benefit card */
.benefit-card:nth-child(1):hover {
  transform: perspective(1000px) rotateX(2deg) rotateY(-4deg) translateY(-12px)
    scale(1.03);
}

.benefit-card:nth-child(2):hover {
  transform: perspective(1000px) rotateX(-1deg) rotateY(3deg) translateY(-12px)
    scale(1.03);
}

.benefit-card:nth-child(3):hover {
  transform: perspective(1000px) rotateX(1deg) rotateY(-2deg) translateY(-12px)
    scale(1.03);
}

/* Icon container animations */
.benefit-icon {
  position: relative;
  will-change: transform;
}

/* Icon shimmer effect */
.icon-shimmer {
  transition: all 0.8s ease;
}

/* Icon SVG bounce animation */
@keyframes iconBounce {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  25% {
    transform: scale(1.1) rotate(5deg);
  }
  50% {
    transform: scale(1.05) rotate(0deg);
  }
  75% {
    transform: scale(1.1) rotate(-5deg);
  }
}

.benefit-card:hover .icon-svg {
  animation: iconBounce 0.6s ease-in-out;
}

/* Content slide-up effect */
.benefit-content {
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-content {
  transform: translateY(-4px);
}

/* Floating animation for benefit cards */
@keyframes benefitFloat {
  0%,
  100% {
    transform: translateY(0px) rotateZ(0deg);
  }
  33% {
    transform: translateY(-2px) rotateZ(0.5deg);
  }
  66% {
    transform: translateY(1px) rotateZ(-0.5deg);
  }
}

.benefit-card {
  animation: benefitFloat 8s ease-in-out infinite;
}

.benefit-card:nth-child(1) {
  animation-delay: 0s;
}

.benefit-card:nth-child(2) {
  animation-delay: 2.5s;
}

.benefit-card:nth-child(3) {
  animation-delay: 5s;
}

/* Enhanced scroll reveal for benefits */
@keyframes benefitSlideUp {
  from {
    opacity: 0;
    transform: translateY(60px) rotateX(15deg) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg) scale(1);
  }
}

.benefit-card.animate-fadeIn {
  animation: benefitSlideUp 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Neighboring card interactions (no opacity changes) */
.benefit-card:hover ~ .benefit-card {
  transform: perspective(1000px) translateY(-2px) scale(0.96) rotateY(1deg);
}

/* Icon pulse effect */
@keyframes iconPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(218, 119, 86, 0.4);
    background-color: rgba(218, 119, 86, 0.2);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(218, 119, 86, 0);
    background-color: rgba(218, 119, 86, 0.3);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(218, 119, 86, 0);
    background-color: rgba(218, 119, 86, 0.2);
  }
}

.benefit-icon {
  animation: iconPulse 4s infinite;
}

.benefit-card:nth-child(1) .benefit-icon {
  animation-delay: 0s;
}

.benefit-card:nth-child(2) .benefit-icon {
  animation-delay: 1.3s;
}

.benefit-card:nth-child(3) .benefit-icon {
  animation-delay: 2.6s;
}

/* Click feedback for benefit cards */
.benefit-card:active {
  transform: perspective(1000px) scale(0.98) translateY(2px);
}

/* Background glow effect on hover */
.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    rgba(218, 119, 86, 0.05),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: inherit;
  z-index: 0;
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card > * {
  position: relative;
  z-index: 1;
}

/* Mobile optimizations for benefits */
@media (max-width: 768px) {
  .benefit-card:hover {
    transform: perspective(1000px) translateY(-6px) scale(1.02);
  }

  .benefit-card {
    animation: none; /* Disable floating on mobile */
  }

  .benefit-icon {
    animation: iconPulse 4s infinite; /* Keep icon pulse on mobile */
  }
}

/* Focus states for accessibility */
.benefit-card:focus {
  outline: 3px solid #da7756;
  outline-offset: 4px;
  transform: perspective(1000px) translateY(-6px) scale(1.02);
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .benefit-card,
  .benefit-icon,
  .icon-svg {
    animation: none !important;
    transition: none !important;
  }

  .benefit-card:hover {
    transform: translateY(-4px);
  }
}
