body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to bottom, #1a202c, #000000);
}

.card {
    background: rgba(55, 65, 81, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.3);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.fancy-cta {
    background: linear-gradient(to right, #4f46e5, #7c3aed);
    transition: all 0.3s ease;
}

.fancy-cta:hover {
    background: linear-gradient(to right, #7c3aed, #4f46e5);
    transform: scale(1.05);
}

.fancy-link {
    position: relative;
    transition: color 0.3s ease;
}

.fancy-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #7c3aed;
    transition: width 0.3s ease;
}

.fancy-link:hover::after {
    width: 100%;
}

input, select {
    background: rgba(55, 65, 81, 0.9);
    border: 1px solid #6366f1;
    transition: all 0.3s ease;
}

input:focus, select:focus {
    border-color: #7c3aed;
    box-shadow: 0 0 8px rgba(124, 58, 237, 0.5);
}

.faq-question:hover {
    color: #7c3aed;
}