.fa-check-circle {
    margin-right: 6px;
}
.benefits-holder {background:#27416c;padding:24px;}
.credit-benefits {
    font-size: 18px;
    line-height: 1.6;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.credit-benefits .benefit-item {
    padding:3px 7px ;
    border-radius: 5px;
    background-color: #efefef;
    margin: 5px;
    font-size: initial;
    font-family: 'Exo';
}
.credit-application-form {
    max-width: 100%;
    background-color: #f2f8fe;
    padding: 30px 30px 45px 30px;

    margin-bottom: 40px;
}
.credit-application-form input {
        box-sizing: border-box;
        padding: 8px;
        border-radius: 5px;
        border: 2px solid #ccc;
}
.credit-application-form input:focus {
        border-color: #4CAF50;
        outline: none;
}

.trade-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    max-width: 800px;
}

.trade-option {
    padding: 6px;
    text-align: center;
    border: 2px solid #ccc;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    background-color: #fff;
    transition: all 0.2s ease;
}

.trade-option:hover {
    border-color: #4CAF50;
}

.trade-option.selected {
    background-color: #4CAF50;
    color: #fff;
    border-color: #4CAF50;
}

.consent-selector {
    display: grid;
    gap: 12px;
    max-width: 800px;
}

.consent-option {
    position: relative;
    border: 2px solid #ccc;
    border-radius: 8px;
    padding: 14px;
    cursor: pointer;
    background-color: #fff;
    transition: all 0.2s ease;
}

.consent-option:hover {
    border-color: #4CAF50;
}

/* Hide the default checkbox */
.consent-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Label styling */
.consent-option label {
    cursor: pointer;
    display: block;
    font-weight: 500;
}

/* Selected state */
.consent-option input[type="checkbox"]:checked + label {
    color: #fff;
}

.consent-option input[type="checkbox"]:checked {
    /* no visual, but used as hook */
}

.consent-option:has(input[type="checkbox"]:checked) {
    background-color: #4CAF50;
    border-color: #4CAF50;
}

.trade-selector, .consent-selector, .credit-personal-details {
    margin-bottom: 30px;
}
.limit-900px {
    max-width: 900px;
    margin: 0 auto;
}
