
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 5rem;
        }
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .faq-item {
            border-bottom: 1px solid #e5e7eb;
            padding-bottom: 1rem;
            margin-bottom: 1rem;
        }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.5rem 0;
        }
        .faq-answer {
            padding: 0.75rem 0 0.25rem 0;
            color: #4b5563;
            line-height: 1.6;
        }
        .faq-icon {
            color: #4A90E2;
            font-size: 1.1rem;
        }
        .tally-form-container {
            min-height: 600px;
            width: 100%;
        }
        @media (max-width: 768px) {
            .section-padding {
                padding-top: 3rem;
                padding-bottom: 3rem;
            }
        }
        @keyframes float-rotate {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            25% { transform: translateY(-10px) rotate(2deg); }
            50% { transform: translateY(-5px) rotate(-1deg); }
            75% { transform: translateY(-10px) rotate(1deg); }
        }
        .floating-image {
            animation: float-rotate 8s ease-in-out infinite;
        }
        .card-shadow {
            box-shadow: 0 10px 30px rgba(15, 76, 129, 0.08);
        }
        .card-shadow:hover {
            box-shadow: 0 15px 40px rgba(15, 76, 129, 0.12);
        }
        .section-padding {
            padding-top: 4rem;
            padding-bottom: 4rem;
        }
        @media (min-width: 768px) {
            .section-padding {
                padding-top: 5rem;
                padding-bottom: 5rem;
            }
        }
        .container-custom {
            width: 100%;
            max-width: 80rem;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1rem;
            padding-right: 1rem;
        }
        @media (min-width: 768px) {
            .container-custom {
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }
        }
        .card-hover {
            transition: all 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
        }
    