   html {
            scroll-behavior: smooth;
        }

        .ftco_navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 9999;
        }


        .card {
            background: #fff;
            padding: 2rem;
            border-radius: 16px;
            max-width: 500px;
            width: 100%;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            margin: 0 auto;
        }

        .h2 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .summary {
            background: #f1f5f9;
            padding: 1rem;
            border-radius: 12px;
            margin-bottom: 1.5rem;
        }

        .tabs {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .tab {
            flex: 1;
            text-align: center;
            padding: 0.5rem;
            background: #e2e8f0;
            border-radius: 8px;
            cursor: pointer;
        }

        .tab.active {
            background: #1f2937;
            color: #fff;
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
        }

        .form-group2 {
            margin-bottom: 1rem;
        }

        .input2 {
            width: 100%;
            padding: 0.45rem;
            border-radius: 8px;
            border: 1px solid #ccc;
            font-size: 1rem;
        }

        .proceed {
            background: #111827;
            color: white;
            border: none;
            width: 100%;
            padding: 0.75rem;
            border-radius: 10px;
            font-size: 1rem;
            cursor: pointer;
        }

        .proceed:hover {
            background: #1f2937;
        }