/* Custom accent colors to match the LifeCode H₂O logo */
.accent-color { color: #38bdf8; } /* Sky-400 */
.bg-accent-color { background-color: #38bdf8; }
.hover\:bg-accent-hover:hover { background-color: #0ea5e9; } /* Sky-500 */
.border-accent-color { border-color: #38bdf8; }

.text-gradient {
    background-image: linear-gradient(to right, #38bdf8, #334155); /* From your accent color to dark slate */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}