.terms-btn-b8d889f8 {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    background-color: #000;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.2s;
}
.terms-btn-b8d889f8:hover {
    opacity: 0.8;
}
.terms-modal-b8d889f8 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.terms-modal-b8d889f8.is-open {
    opacity: 1;
    pointer-events: auto;
}
.terms-modal-overlay-b8d889f8 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}
.terms-modal-content-b8d889f8 {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    overflow: hidden;
    z-index: 10000;
}
.terms-modal-header-b8d889f8 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    background: #fafafa;
}
.terms-modal-header-b8d889f8 h3 {
    margin: 0;
    font-size: 20px;
    color: #333;
}
.terms-modal-close-b8d889f8 {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    line-height: 1;
    padding: 0;
}
.terms-modal-body-b8d889f8 {
    padding: 20px;
    overflow-y: auto;
    color: #444;
    line-height: 1.6;
}
