/* Стили аналогичны странице политики конфиденциальности */
.terms-page {
    width: 100%;
    padding: 0 0 20px;
}

.terms-container {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.terms-header {
    background: linear-gradient(135deg, #1a2535 0%, #283852 100%);
    padding: 40px;
    color: white;
    text-align: center;
}

.terms-header h1 {
    font-size: 32px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.terms-header h1 i {
    color: #e01a3f;
}

.terms-header p {
    color: #9aafc5;
    font-size: 14px;
}

.terms-content {
    padding: 40px;
}

.terms-section {
    margin-bottom: 32px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 24px;
}

.terms-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.terms-section h2 {
    font-size: 22px;
    color: #1a2a3f;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.terms-section h2 i {
    color: #e01a3f;
    font-size: 24px;
}

.terms-section p {
    color: #4a5a70;
    line-height: 1.6;
    margin-bottom: 16px;
}

.terms-section ul {
    list-style: none;
    margin: 12px 0;
}

.terms-section li {
    color: #4a5a70;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.terms-section li i {
    width: 24px;
    color: #e01a3f;
}

.terms-section a {
    color: #e01a3f;
    text-decoration: none;
}

.terms-section a:hover {
    text-decoration: underline;
}

.terms-footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
    font-size: 14px;
    color: #5a6a80;
}

.terms-footer i {
    color: #10b981;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .terms-container {
        margin: 0 16px;
    }
    
    .terms-header {
        padding: 24px;
    }
    
    .terms-header h1 {
        font-size: 24px;
    }
    
    .terms-content {
        padding: 24px;
    }
    
    .terms-section h2 {
        font-size: 18px;
    }
    
    .terms-section li {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .terms-header {
        padding: 20px;
    }
    
    .terms-header h1 {
        font-size: 20px;
    }
    
    .terms-content {
        padding: 16px;
    }
    
    .terms-section {
        margin-bottom: 24px;
        padding-bottom: 20px;
    }
    
    .terms-section h2 {
        font-size: 16px;
    }
    
    .terms-section li {
        font-size: 13px;
    }
}
