

        /* Applies white borders everywhere on this page */
        .container, 
        .container * {
            border-color: #ffffff !important;
        }

        /* White text & borders inside Cognito Form */
        .cognito .c-forms-form input,
        .cognito .c-forms-form textarea,
        .cognito .c-forms-form select {
            border: 1px solid #ffffff !important;
            color: #ffffff !important;
        }

        /* White labels for Cognito Form */
        .cognito .c-forms-form label {
            color: #ffffff !important;
        }

        /* White placeholders */
        .cognito ::placeholder {
            color: #ffffff !important;
        }

        /* ⭐ MAKE THE FORM-SECTION CONTAINER WHITE */
        .form-section {
            background-color: #ffffff !important;
            padding: 30px;
            border-radius: 12px;
            color: #000 !important; /* Black text for readability */
        }

        /* Text + elements inside form-section become dark so the white background works */
        .form-section * {
            color: #000 !important;
            border-color: #000 !important;
        }

        /* But override Cognito form back to white theme (since it's inside white box) */
        .form-section .cognito .c-forms-form input,
        .form-section .cognito .c-forms-form textarea,
        .form-section .cognito .c-forms-form select {
            border: 1px solid #000 !important;  /* black border */
            color: #000 !important;             /* black text */
        }

        .form-section .cognito .c-forms-form label {
            color: #000 !important;
        }

        .form-section .cognito ::placeholder {
            color: #555 !important;
        }
