body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}
.terms-header {
    background: white;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 20px;
    font-weight: bold;
    color: var(--theme-dark);
    text-decoration: none;
}
.close-btn {
    padding: 8px 16px;
    background: #666;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
}
.close-btn:hover {
    background: #444;
}
.terms-container {
    max-width: 800px;
    margin: 40px auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.terms-title {
    font-size: 28px;
    margin-bottom: 10px;
    color: #333;
    border-bottom: 3px solid var(--theme-light);
    padding-bottom: 15px;
}
.terms-date {
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
    text-align: right;
}
.terms-content {
    font-size: 15px;
    line-height: 1.8;
}
.terms-content h3 {
    font-size: 17px;
    margin: 25px 0 12px;
    color: var(--theme-dark);
}
.terms-content p {
    margin-bottom: 12px;
}
.terms-content ol {
    padding-left: 20px;
    margin-bottom: 20px;
}
.terms-content ol li {
    margin-bottom: 8px;
}
.terms-content h2 {
    font-size: 20px;
    margin: 30px 0 15px;
    color: var(--theme-dark);
}
.terms-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}
.terms-content li {
    margin-bottom: 8px;
}
.empty-state {
    text-align: center;
    padding: 50px;
    color: #666;
}
