/* ======================== Privacy Agreement ======================== */
.custom-privacy {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background: #f8f8f8;
    padding: 12px 16px;
    border-radius: 5px;
    max-width: 700px;
    border: 1px solid #ddd;
    margin-top: 10px;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    overflow: hidden;
    max-height: 200px;
}
.custom-privacy input[type="checkbox"] {
    margin-right: 8px;
    vertical-align: middle;
}
.privacy-agreement.expanded {
    max-height: none;
    padding-bottom: 20px;
}
.privacy-agreement.expanded .more-text {
    margin-top: 8px;
}
.custom-privacy a {
    color: #0073aa;
    text-decoration: none;
}
.custom-privacy a:hover {
    text-decoration: underline;
}
.read-more {
    color: #0073aa;
    text-decoration: none;
    font-size: 14px;
    margin-left: 5px;
    transition: color 0.3s ease-in-out;
    cursor: pointer;
}
.read-more:hover {
    color: #005077;
}
.more-text {
    display: none;
}