.terms-content {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.article {
    margin-bottom: 2.5rem;
    scroll-margin-top: 20px;
}

.article-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ecf0f1;
}

.article-number {
    background-color: #2c3e50;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.article-title {
    color: #2c3e50;
    font-size: 1.5rem;
}

.article-content {
    padding-left: 3rem;
}

.highlight {
    background-color: #fff9e6;
    padding: 1rem;
    border-left: 4px solid #ffcc00;
    margin: 1rem 0;
    border-radius: 0 8px 8px 0;
}

.sub-article {
    margin: 1rem 0;
}

.sub-article ol {
    list-style-type: lower-alpha;
    margin-left: 2rem;
}

footer {
    background-color: #2c3e50;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.acceptance-section {
    background-color: #ecf0f1;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
}

.acceptance-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

.acceptance-btn:hover {
    background-color: #c0392b;
}

@media (max-width: 768px) {


    .article-content {
        padding-left: 1rem;
    }

    .article-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .article-number {
        margin-bottom: 0.5rem;
    }
}