.custom-textarea {
    width: 100%;
    height: 150px;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

.form-check-input {
    width: 1.2em;
    height: 1.2em;
    background-color: #ccc;
    border: 1px solid #999;
    appearance: none;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.form-check-label {
    font-size: 17px;
    line-height: 20px;
    font-weight: 300;
    letter-spacing: normal;
    color: #000;
}

.form-check-input:checked {
    background-color: #80C41C;
    border-color: #80C41C;
    box-shadow: none;
}

.form-check-input:checked::after {
    transform: translate(-50%, -50%) scale(1);
}

.upload-box {
    border: 1px dashed #ccc;
    border-radius: 6px;
    background-color: #fff;
    width: 100%;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #5f6f89;
    text-align: center;
    transition: border-color 0.3s ease;
    cursor: pointer;
    margin-bottom: 20px;
    position: relative;
}

.upload-box>i {
    font-size: 50px;
    margin-bottom: 20px;
}

.upload-box>p {
    font-size: 17px;
    line-height: 20px;
    font-weight: 300;
    letter-spacing: normal;
    color: #000;
}

.upload-box:hover {
    border-color: #80C41C;
}

input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    top: 0;
    left: 0;
}

.file-list {
    max-width: 600px;
}

.file-item {
    background: #fff;
    border: 2px solid #80C41C;
    padding: 4px 10px;
    border-radius: 30px;
    width: 360px;
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.file-thumb {
    width: 40px;
    height: 30px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 15px;
    border: 1px solid #ddd;
    background: #f0f0f0;
    flex-shrink: 0;
}

.file-info {
    flex-grow: 1;
    overflow: hidden;
}

.file-name {
    font-weight: 500;
    color: #000;
    font-size: 12px !important;
    padding: 0 !important;
}

.file-size {
    font-size: 11px;
    color: #666;
}

.file-remove {
    color: red;
    cursor: pointer;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.file-remove:hover {
    color: #a71d2a;
}

.icon-checkbox {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    margin-bottom: 12px;
}

.icon-checkbox .icon {
    font-size: 22px;
    color: #ccc;
    margin-right: 12px;
    margin-top: 4px;
    transition: color 0.3s ease;
}

.icon-checkbox.selected .icon {
    color: #74B219;
}

.label-text {
    font-size: 17px;
    line-height: 20px;
    font-weight: 300;
    letter-spacing: normal;
    color: #000;
}

.section-divider {
    border: none;
    border-top: 2px solid #ccc;
    margin: 80px 0;/
}