/* Smooth scrolling and base transitions */
html { scroll-behavior: smooth; }
.page-section { display: none; animation: fadeIn 0.4s ease-in-out; }
.page-section.active { display: block; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Standout pulsing effect for the Try Product button */
.btn-try-product {
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.5);
    transition: all 0.3s ease;
}
.btn-try-product:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.8);
}
