.terms-container {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.terms-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
}

.terms-header h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.terms-header .effective-date {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
}

.terms-section {
    margin-bottom: 2.5rem;
}

.terms-section h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.terms-section h2::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 1.5rem;
    background: #3498db;
    margin-right: 0.75rem;
    border-radius: 2px;
}

.terms-section p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.terms-section ul {
    list-style-type: none;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.terms-section li {
    color: #444;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.terms-section li::before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.prohibited-actions {
    background: #fff5f5;
    border-left: 4px solid #fc8181;
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.prohibited-actions h3 {
    color: #c53030;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.prohibited-actions ul li::before {
    color: #fc8181;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    border: 1px solid #e9ecef;
}

.contact-info h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-info p {
    color: #666;
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

.update-notice {
    font-style: italic;
    color: #666;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    text-align: center;
}

@media (max-width: 768px) {
    .terms-container {
        margin: 1rem;
        padding: 1.5rem;
    }

    .terms-header h1 {
        font-size: 2rem;
    }

    .terms-section h2 {
        font-size: 1.3rem;
    }

    .prohibited-actions {
        margin: 1rem 0;
        padding: 1rem;
    }
}
