.tricolor-bar {
            background: linear-gradient(to right, #FF9933 33%, #FFFFFF 33%, #FFFFFF 66%, #138808 66%);
        }
        .card-glow {
            box-shadow: 0 10px 30px -5px rgba(30, 58, 138, 0.1);
        }
        .hero-container {
            position: relative;
            overflow: hidden;
        }
        .contact-card {
            transition: all 0.3s ease;
        }
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px -10px rgba(30, 58, 138, 0.15);
        }
        .form-input {
            transition: all 0.3s ease;
        }
        .form-input:focus {
            box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
        }
        .faq-item {
            border-bottom: 1px solid #E5E7EB;
        }
        .faq-item:last-child {
            border-bottom: none;
        }
        .faq-question {
            cursor: pointer;
            padding: 1.5rem 2rem;
            transition: all 0.3s ease;
        }
        .faq-question:hover {
            color: #1E3A8A;
            background-color: #f8fafc;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        .faq-answer.open {
            max-height: 500px;
        }
        .contact-icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            margin-bottom: 1rem;
        }
        .step-indicator {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-right: 12px;
            flex-shrink: 0;
        }
        .contact-section {
            scroll-margin-top: 100px;
        }