.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.transition-all-300 {
    transition: all 0.3s ease;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, #ea580c 0%, #fb923c 100%);
}

.bg-gradient-success {
    background: linear-gradient(135deg, #059669 0%, #34d399 100%);
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
}

.nav-link-active {
    position: relative;
}

.nav-link-active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #f97316;
}

.carousel-item {
    transition: opacity 1000ms ease-in-out;
}

table {
    width: 100%;
    border-collapse: collapse;
}

.faq-answer {
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .hidden.md\\:flex {
        display: none;
    }
    
    .hidden.md\\:hidden {
        display: block;
    }
}

.shadow-card {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-card-hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.font-sans {
    font-family: 'Inter', system-ui, sans-serif;
}