.option-box {
        border: 1px solid #ddd;
        border-radius: 5px;
        padding: 20px;
        margin-bottom: 15px;
        background-color: #f9f9f9;
    }

    .option-box:hover {
        border-color: #0073e6;
    }

    .option-box input[type="radio"] {
        margin-right: 10px;
        vertical-align: top;
    }

    .option-title {
        font-weight: bold;
        display: inline-block;
    }

    .check-list {
        margin-top: 10px;
        padding-left: 25px;
        color: #003366;
    }

    .radio-wrapper {
        position: relative;
        cursor: pointer;
       
    }

    .radio-input {
        display: none;
    }

    .radio-tile {
        display: flex;
        flex-direction: column;
        justify-content: center;
        border: 2px solid #ccc;
        border-radius: 12px;
        padding: 16px;
        min-width: 250px;
        transition: all 0.3s ease;
        background: #fff;
        height: 100%;
    }

    .radio-input:checked+.radio-tile {
        border-color: #0073e6;
        background-color: #f9f9f9;
    }

    .radio-label {
        font-size: 1rem;
        font-weight: 600;
        text-align: center;
        margin-bottom: 6px;
    }

    .radio-tile small {
        font-size: 0.85rem;
        color: #666;
    }