       /* Form Styles */
        .form-control {
            margin-bottom: 20px;
        }
        .success {
            color: white;
            background-color: #489c48;
            display: block;
            border-radius: 5px;
            padding: 7px;
            margin-top: 7px;
        }
        .failed {
            color: white;
            background-color: #fd6161;
            display: block;
            border-radius: 5px;
            padding: 7px;
            margin-top: 7px;
        }
        .fa-spinner {
            animation: spin 1s linear infinite;
            margin-right: 5px;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        button:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }
        
        /* FAQ Accordion Styles */
        .faq-container .card {
            border-radius: 12px !important;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .faq-container .card:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
        }
        .faq-container .btn-link {
            position: relative;
            font-size: 1.1rem;
            background: white;
            text-decoration: none;
            color: #0a2540;
        }
        .faq-container .btn-link:hover {
            background-color: #f8f9fa;
        }
        .faq-container .btn-link .fas.fa-chevron-down {
            transition: transform 0.3s ease;
        }
        .faq-container .btn-link[aria-expanded="true"] .fas.fa-chevron-down {
            transform: rotate(180deg);
        }
        .faq-container .card-body {
            background-color: #fafbfc;
            border-top: 2px solid #0056b3;
        }
        .timeline-progress .rounded-circle {
            background: linear-gradient(135deg, #0056b3, #003d82) !important;
            font-weight: bold;
        }
        .table-primary {
            background-color: #0056b3 !important;
            color: white !important;
        }
        .table-primary th {
            color: white;
            font-weight: 600;
        }
        .cta-box {
            background: linear-gradient(135deg, #0056b3 0%, #003d82 100%) !important;
        }
        
        /* Mobile Responsive FAQ */
        @media (max-width: 768px) {
            .faq-container .btn-link {
                font-size: 1rem;
                padding: 15px !important;
                white-space: normal;
                text-align: left;
            }
            .faq-container .btn-link .fas {
                margin-left: 10px;
            }
            .card-body {
                padding: 15px !important;
            }
            .table {
                font-size: 0.9rem;
            }
            .cta-box {
                padding: 30px 20px !important;
            }
            .cta-box h3 {
                font-size: 1.5rem;
            }
            .btn-lg {
                padding: 10px 25px !important;
                font-size: 1rem;
            }
        }
        @media (max-width: 480px) {
            .faq-container .btn-link {
                font-size: 0.95rem;
                padding: 12px !important;
            }
            .faq-container .btn-link .fas {
                margin-left: 5px;
            }
            .timeline-progress .d-flex {
                flex-direction: column;
                align-items: flex-start !important;
            }
            .timeline-progress .rounded-circle {
                margin-bottom: 8px;
                margin-right: 0 !important;
            }
            .table {
                font-size: 0.8rem;
            }
            .btn-sm {
                padding: 5px 10px;
                font-size: 0.8rem;
            }
        }
        
        /* Review Carousel Styles */
        .reviews-carousel-area {
            padding: 80px 0;
            position: relative;
        }
        .simple-carousel {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }
        .carousel-container {
            overflow: hidden;
            margin: 0 auto;
        }
        .carousel-track {
            display: flex;
            transition: transform 0.5s ease;
            gap: 30px;
        }
        .carousel-slide {
            flex: 0 0 calc(33.333% - 20px);
            min-width: 0;
        }
        .carousel-slide img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }
        .carousel-slide img:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,86,179,0.15);
        }
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: #0056b3;
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }
        .carousel-btn:hover {
            background: #003d82;
        }
        .carousel-btn.prev-btn {
            left: 0;
        }
        .carousel-btn.next-btn {
            right: 0;
        }
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }
        .dot {
            width: 10px;
            height: 10px;
            background: #ccc;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .dot.active {
            background: #0056b3;
            width: 30px;
            border-radius: 10px;
        }
        @media (max-width: 991px) {
            .carousel-slide {
                flex: 0 0 calc(50% - 15px);
            }
        }
        @media (max-width: 767px) {
            .simple-carousel {
                padding: 0 20px;
            }
            .carousel-slide {
                flex: 0 0 100%;
            }
            .carousel-btn {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }
        }