
        .api-wrapper {
            max-width: 900px;
        }

        .api-card {
            background: white;
            border-radius: 18px;
            padding: 40px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
        }

        .title {
            font-weight: 700;
            font-size: 22px;
            margin-bottom: 5px;
        }

        .subtitle {
            color: #6c757d;
            font-size: 14px;
            margin-bottom: 30px;
        }

        .section-title {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
            color: #6c757d;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .form-control {
            border-radius: 10px;
            padding: 12px;
            border: 1px solid #e6e8ec;
        }

        .form-control:focus {
            border-color: #4f7cff;
            box-shadow: 0 0 0 3px rgba(79, 124, 255, .08);
        }

        /* SERVICES GRID */

        .service-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
        }

        @media(max-width:768px) {

            .service-grid {
                grid-template-columns: repeat(2, 1fr);
            }

        }

        /* SERVICE CARD */

        .service-card {
            border: 1px solid #e6e8ec;
            border-radius: 12px;
            padding: 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: .25s;
            -webkit-tap-highlight-color: transparent;
            user-select: none;
        }

        .service-card:hover {
            border-color: #4f7cff;
            background: #f9fbff;
        }

        .service-card.active {
            border-color: #4f7cff;
            background: #f1f5ff;
        }

        .service-name {
            font-weight: 600;
            font-size: 14px;
        }

        /* TOGGLE SWITCH */

        .toggle-switch {
            position: relative;
            width: 42px;
            height: 22px;
        }

        .toggle-switch input {
            display: none;
        }

        .slider {
            position: absolute;
            cursor: pointer;
            background: #d1d5db;
            border-radius: 30px;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            transition: .3s;
        }

        .slider:before {
            position: absolute;
            content: "";
            height: 16px;
            width: 16px;
            left: 3px;
            bottom: 3px;
            background: white;
            transition: .3s;
            border-radius: 50%;
        }

        input:checked+.slider {
            background: #4f7cff;
        }

        input:checked+.slider:before {
            transform: translateX(20px);
        }

        /* BUTTON */

        .submit-btn {
            padding: 14px;
            border-radius: 12px;
            font-weight: 600;
            background: #4f7cff;
            border: none;
        }

        .submit-btn:hover {
            background: #3b63e6;
        }

        .loading-spinner {
            display: none;
        }

        .success-box {
            display: none;
            background: #e8f7ee;
            color: #198754;
            padding: 12px;
            border-radius: 8px;
            margin-bottom: 20px;
        }