/* General form styling */
        div[role="form"] {
            font-family: Arial, sans-serif;
            max-width: 600px;
            margin: 0 auto;
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        .form-row {
            margin-bottom: 15px;
        }

        .form-row label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
            color: #333;
        }

        .form-row input[type="text"],
        .form-row input[type="email"],
        .form-row textarea {
            width: 100%;
            padding: 10px;
            font-size: 14px;
            border: 1px solid #018501;
            border-radius: 4px;
            box-sizing: border-box;
        }

        .form-row textarea {
            resize: vertical;
        }

        .form-row input[type="text"]:focus,
        .form-row input[type="email"]:focus,
        .form-row textarea:focus {
            border-color: #f7b90f;
            outline: none;
        }

        .form-row input[type="checkbox"] {
            margin-right: 5px;
        }

        .form-row .wpcf7-list-item-label {
            margin-right: 15px;
            font-size: 14px;
        }

        .form-submit {
            text-align: center;
            margin-top: 20px;
        }

        .form-submit input[type="submit"] {
            background-color: #f7b90f;
            color: #fff;
            padding: 10px 20px;
            font-size: 16px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .form-submit input[type="submit"]:hover {
            background-color: #0056b3;
        }

        .clear {
            clear: both;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            div[role="form"] {
                padding: 15px;
            }

            .form-row input[type="text"],
            .form-row input[type="email"],
            .form-row textarea {
                font-size: 16px;
            }
        }
		.checkbox-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px; /* Adjust the space between checkboxes as needed */
}

.checkbox-container span {
    display: flex;
    align-items: center;
}

.wpcf7-list-item-label {
    margin-left: 8px;
}