.terms {
    max-width: 700px;
    margin: auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
}

.terms h1 {
    margin-top: 70px;
    background: linear-gradient(135deg, #402E25, #DAB678);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-align: center;
    font-size: 2.5rem;
}

.intro {
    font-size: 1em;
    margin-bottom: 15px;
    color: #5a4a3f;
    text-align: center;
    margin-top: 25px;
}

h2 {
    text-align: center;
    color: #DAB678;
    margin-bottom: 15px;
    font-size: 2.2em;
}

.term-item {
    margin-bottom: 15px;
    padding: 10px;
    border-left: 4px solid #DAB678;
    background-color: #fafafa;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.term-item:hover {
    background-color: rgba(218, 182, 120, 0.15);
}

.term-item h3 {
    color: #DAB678;
    margin: 0 0 8px;
    font-size: 1.4em;
}

p {
    color: #5a4a3f;
    line-height: 1.5;
}

a {
    color: #DAB678;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: #402E25;
}