.terms {
    max-width: 700px;
    margin: auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
}

.terms h1 {
    margin-top: 70px;
}

.intro {
    font-size: 1em;
    margin-bottom: 15px;
    color: #666;
    text-align: center;
    margin-top: 25px;
}

h2 {
    text-align: center;
    color: #E90596;
    margin-bottom: 15px;
    font-size: 2.2em;
}

.term-item {
    margin-bottom: 15px;
    padding: 10px;
    border-left: 4px solid #EE66A6;
    background-color: #fafafa;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.term-item:hover {
    background-color: rgba(255, 196, 225, 0.5);
}

.term-item h3 {
    color: #e90596;
    margin: 0 0 8px;
    font-size: 1.4em;
}

p {
    color: #555;
    line-height: 1.5;
}

a {
    color: #ff6600;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}