.custom-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 120%;
    font-weight: 400;
    position: relative;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
}

.custom-checkbox .checkmark {
    height: 1.6rem;
    width: 1.6rem;
    flex: 0 0 auto;
    border: 1px solid var(--secondary);
    border-radius: 0.4rem;
    position: relative;
    transition: 0.3s;
    margin-top: 0.2rem;
}

.custom-checkbox .checkmark::after {
    content: "";
    position: absolute;
    left: 0.4rem;
    top: -0.05rem;
    width: 0.4rem;
    height: 1rem;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: 0.3s;
}

.custom-checkbox input:checked + .checkmark {
    background: var(--secondary);
}

.custom-checkbox input:checked + .checkmark::after {
    transform: rotate(45deg) scale(1);
}

.custom-checkbox:hover .checkmark {
    box-shadow: 0 0 0 2px rgba(255, 174, 0, 0.15);
}

.checkbox-text {
    font-size: 1.2rem;
    line-height: 120%;
    font-weight: 400;
}

.checkbox-text a {
    font-size: 1.2rem;
    line-height: 120%;
    font-weight: 400;
    color: var(--secondary);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.checkbox-text a:hover {
    text-decoration: unset;
}

.checkbox-text p,
.checkbox-text span {
    font-size: 1.2rem;
    line-height: 120%;
    font-weight: 400;
}