.terms-links {
    width: 100%;
    padding: 0 clamp(30px, 5vw, 60px);
    margin: 2rem auto;
}

.terms-links__container {
    max-width: 1200px;
    margin: 0 auto;
}

.terms-links__title {
    font-family: 'Lexend', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    color: #333333;
    margin: 0 0 1.5rem 0;
}

.terms-links__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.terms-links__item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.terms-links__item:hover {
    opacity: 0.8;
}

.terms-links__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.terms-links__icon svg {
    width: 100%;
    height: 100%;
}

.terms-links__text {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #2ecc71;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-links {
        padding: 0 20px;
    }
    
    .terms-links__title {
        font-size: 20px;
    }
    
    .terms-links__text {
        font-size: 14px;
    }
}

