body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

.terms-container {
    max-width: 900px;
    margin: 30px auto;
    padding: 25px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.terms-header {
    border-bottom: 2px solid #005d2c; /* Màu xanh lá cây đặc trưng của thuocchuanvn */
    padding-bottom: 15px;
    margin-bottom: 25px;
    text-align: center;
}

.terms-header h1 {
    font-size: 2.2em;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.terms-header .last-updated {
    font-size: 0.9em;
    color: #777;
}

.terms-section {
    margin-bottom: 30px;
}

.terms-section h2 {
    font-size: 1.6em;
    color: var(--text-primary); /* Một màu xanh dương để phân biệt với header */
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}

.terms-section p {
    margin-bottom: 15px;
    text-align: justify;
    color: #555;
}

.terms-section ul {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 10px;
}

.terms-section ul li {
    margin-bottom: 8px;
}