.terms {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Montserrat', sans-serif;
}
.terms h1, .terms h2, .terms h3 {
    color: #333;
}
.terms h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
}
.terms h2 {
    font-size: 1.75em;
    margin-bottom: 15px;
    position: relative;
    display: flex;
    align-items: center;
}
.terms h2 .material-icons {
    margin-right: 10px;
    font-size: 1.5em;
    color: #007bff;
}
.terms p {
    font-size: 1em;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    transition: color 0.3s;
}
.terms a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
}
.terms a:hover {
    color: #0056b3;
}
.highlight {
    color: #007bff;
    font-weight: 600;
    transition: color 0.3s;
}
.important {
    color: #ff5722;
    font-weight: 700;
    transition: color 0.3s;
}
.terms .icon-text {
    display: flex;
    align-items: center;
}
.terms .icon-text .material-icons {
    margin-right: 10px;
    color: #007bff;
    transition: color 0.3s;
}
.animated-hover:hover {
    color: #ff5722;
    transition: color 0.3s;
}
.terms ul {
    list-style-type: none;
    padding: 0;
}
.terms ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}
.terms ul li::before {
    content: '\2022';
    color: #007bff;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    transition: color 0.3s;
}
.terms ul li:hover::before {
    color: #ff5722;
}
.terms .section {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s, box-shadow 0.3s;
}
.terms .section:hover {
    background-color: #f1f1f1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
