.terms-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.terms-section h1 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 2.5rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 40px;
    font-style: italic;
}

.terms-content {
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

.terms-content p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.terms-section .terms-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.terms-section .terms-section:last-child {
    border-bottom: none;
}

.terms-section h2 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.terms-section h3 {
    color: var(--primary-color);
    margin: 20px 0 10px;
    font-size: 1.3rem;
}

.terms-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.terms-section li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    list-style-type: none;
}

.terms-section li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .terms-content {
        padding: 25px;
    }
    
    .terms-section h1 {
        font-size: 2rem;
    }
    
    .terms-section h2 {
        font-size: 1.3rem;
    }
    
    .terms-section h3 {
        font-size: 1.1rem;
    }
}
